diff --git a/package.json b/package.json index 0a3a0e5..7c63ad5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "oc-updater", "productName": "OpenCore Updater", - "version": "1.1.0", + "version": "1.1.1", "description": "OpenCore Updater", "main": "dist/index.js", "scripts": { diff --git a/src/update/069-to-070.ts b/src/update/069-to-070.ts index c35b9ac..7961d74 100644 --- a/src/update/069-to-070.ts +++ b/src/update/069-to-070.ts @@ -19,7 +19,7 @@ export default { cnt2++; } plistParsed.NVRAM.Add['7C436110-AB2A-4BBB-A880-FE41995C9F82'].ForceDisplayRotationInEFI = 0; - plistParsed.PlatformInfo.Generic.AdviseFeatures = plistParsed.PlatformInfo.Generic.AdviseWindows; + plistParsed.PlatformInfo.Generic.AdviseFeatures = plistParsed.PlatformInfo.Generic.AdviseWindows ? true : false; delete plistParsed.PlatformInfo.Generic.AdviseWindows; plistParsed.UEFI.Output.GopPassThrough = plistParsed.UEFI.Output.GopPassThrough == true ? 'Enabled' : 'Disabled'; plistParsed.UEFI.ProtocolOverrides.AppleEg2Info = false;