Fix Default system None filter logic (#16309)

This commit is contained in:
w-e-w 2024-10-30 02:13:16 +09:00 committed by GitHub
parent 5206b938ef
commit 533c7b7b7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -176,7 +176,7 @@ class UiLoadsave:
if new_value == old_value:
continue
if old_value is None and new_value == '' or new_value == []:
if old_value is None and (new_value == '' or new_value == []):
continue
yield path, old_value, new_value