Add setting prefix for boolean false values

main
Bob Mottram 2021-12-05 21:30:57 +00:00
parent ed25c1b07a
commit e8d2e10445
1 changed files with 1 additions and 1 deletions

View File

@ -2189,7 +2189,7 @@ class PubServer(BaseHTTPRequestHandler):
for variableName, value in themeJson.items():
if value.lower() == 'false' or value.lower() == 'true':
if variableName not in fields:
fields[variableName] = 'False'
fields['themeSetting_' + variableName] = 'False'
# get the parameters from the theme designer screen
themeDesignerParams = {}