Fix reading internal decompressor settings in macOS.

This commit is contained in:
2025-07-26 16:59:25 +01:00
parent 5937e0d83e
commit dc630f3e78

View File

@@ -121,8 +121,7 @@ public static class Settings
Current.UseInternalDecompressor = Current.UseInternalDecompressor =
parsedPreferences.TryGetValue("UseInternalDecompressor", out obj) && parsedPreferences.TryGetValue("UseInternalDecompressor", out obj) &&
bool.TryParse(((NSString)obj).ToString(), out bool b) && ((NSNumber)obj).ToBool();
b;
prefsFs.Close(); prefsFs.Close();
} }