mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-09-01 00:59:19 +00:00
Remove the check for connection name being Ethernet or WiFi
This commit is contained in:
@@ -139,7 +139,6 @@ class CompatibilityChecker:
|
||||
supported_network = {}
|
||||
|
||||
for device_name, device_props in network_info.items():
|
||||
connection_name = device_props.get("Connection Name")
|
||||
bus_type = device_props.get("Bus Type")
|
||||
device_id = device_props.get("Device ID")
|
||||
is_device_supported = device_id in pci_data.NetworkIDs
|
||||
@@ -149,7 +148,7 @@ class CompatibilityChecker:
|
||||
self.min_supported_macos_version = 19
|
||||
|
||||
if not is_device_supported:
|
||||
self.unsupported_devices["{}: {}".format(connection_name, device_name)] = device_props
|
||||
self.unsupported_devices["Network: {}".format(device_name)] = device_props
|
||||
else:
|
||||
supported_network[device_name] = device_props
|
||||
|
||||
|
||||
Reference in New Issue
Block a user