diff --git a/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.5-DEBUG.zip b/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.5-DEBUG.zip index 754a5857e..5cd62f9b4 100644 Binary files a/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.5-DEBUG.zip and b/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.5-DEBUG.zip differ diff --git a/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.5-RELEASE.zip b/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.5-RELEASE.zip index 031238e4f..5ccdde1ff 100644 Binary files a/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.5-RELEASE.zip and b/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.5-RELEASE.zip differ diff --git a/resources/device_probe.py b/resources/device_probe.py index ced93f8b1..ea8c815f2 100644 --- a/resources/device_probe.py +++ b/resources/device_probe.py @@ -51,8 +51,8 @@ class PCIDevice: device = cls(vendor_id, device_id, int.from_bytes(properties["class-code"][:6], byteorder="little"), name=ioreg.io_name_t_to_str(ioreg.IORegistryEntryGetName(entry, None)[1])) if "model" in properties: device.model = properties["model"].strip(b"\0").decode() - if "acpi_path" in properties: - device.acpi_path = properties["acpi-path"].strip(b"\0").decode() + if "acpi-path" in properties: + device.acpi_path = properties["acpi-path"] device.populate_pci_path(entry) return device