1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-08-02 06:09:36 +08:00

fix(bulletin): 修复公告栏系统多项逻辑缺陷与线程安全隐患

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-06-24 12:17:26 +08:00
parent a716e5b945
commit 6f32923865
5 changed files with 226 additions and 111 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ class ConfigManager:
config_data = JSONReader(config_path).data()
self.__config_data[config_type.value] = config_data
return
except:
except Exception:
pass
self.__config_data[config_type.value] = ConfigTemplate(config_type).template()
JSONWriter(config_path, self.__config_data[config_type.value])