Yet another fix for --show-config for items that are forced False on Apple silicon

This commit is contained in:
Greg Neagle
2021-03-05 09:34:32 -08:00
parent 1e3bb8a8a9
commit 8a0a2345da
+1 -1
View File
@@ -306,7 +306,7 @@ def print_config():
if pref_name == 'LastNotifiedDate':
# skip it
continue
if pref_name in FORCE_FALSE_ON_APPLE_SILICON:
if is_apple_silicon() and pref_name in FORCE_FALSE_ON_APPLE_SILICON:
value = False
where = "Forced as False on Apple Silicon"
else: