From 008407b2f247ad31fa6ee33eb955da143a87d20b Mon Sep 17 00:00:00 2001 From: mst Date: Tue, 26 Nov 2024 15:15:13 +0300 Subject: [PATCH] change return string text because why not --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index ef4e1c5..06c59d7 100644 --- a/app.py +++ b/app.py @@ -729,7 +729,7 @@ def updateConfig(): func.saveJSON(cfg, const.configFile) app.config.update(cfg) - return {'message': 'Changes saved!'} + return {'message': 'Settings saved!'} app.register_blueprint(api_bp, url_prefix='/api/v1') app.register_blueprint(admin_bp, url_prefix='/admin')