From eedb06b303a559c17796049909db25a2dde65561 Mon Sep 17 00:00:00 2001 From: Kaning123 Date: Sat, 14 Mar 2026 13:01:11 +0800 Subject: [PATCH] fix:Fixed config.json loader in config.py --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 76965027..cc706b90 100644 --- a/config.py +++ b/config.py @@ -14,7 +14,7 @@ def merge_dir_txt2(*TXT): config_json_location = merge_dir_txt2(current_dir,"config.json") with open(str(config_json_location),"r") as f: __info__ = f.read() - +__info__ = json.loads(__info__) i18n = I18nAuto(language=os.environ.get("language", "Auto"))