mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Refactor templates values gathering for multisite settings
This commit is contained in:
parent
27152f0977
commit
398a33ccfe
1 changed files with 1 additions and 1 deletions
|
|
@ -1919,7 +1919,7 @@ class Database:
|
|||
|
||||
for setting in query:
|
||||
key = f"{service_id}_{setting.setting_id}" + (f"_{setting.suffix}" if setting.suffix > 0 else "")
|
||||
if key in config and config[key]["method"] != "default":
|
||||
if key in config and config[key]["method"] != "default" and not config[key]["global"]:
|
||||
continue
|
||||
|
||||
config[key] = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue