Skip to content

Commit 5836acd

Browse files
committed
fix: webui no longer incorrectly writes out extra/unused fields
Any user relying on the webui likely didn't notice these fields, as they would be unlikely to read the file directly, but in the event that they do/did, the presence of these fields would only serve to confuse, as they are only used internally by webui and are unused by the worker.
1 parent 6abf758 commit 5836acd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def save_config(self, args):
298298
config = self.reload_config()
299299

300300
# Merge values which require some pre-processing
301-
skipped_keys = ["models_on_disk"]
301+
skipped_keys = ["models_on_disk", "special_models_to_load", "special_top_models_to_load"]
302302
models_to_load = []
303303
for key, value in args.items():
304304
cfgkey = self._cfg(key.label)

0 commit comments

Comments
 (0)