From f94c2021a7883352b4a315feea98c1c218742448 Mon Sep 17 00:00:00 2001 From: Aidaho Date: Tue, 19 Dec 2023 10:21:59 +0300 Subject: [PATCH] v7.1.0.0 Fix install service --- app/routes/install/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/install/routes.py b/app/routes/install/routes.py index 4b65723b..43487db6 100644 --- a/app/routes/install/routes.py +++ b/app/routes/install/routes.py @@ -39,7 +39,7 @@ def install_monitoring(): @check_services def install_service(service): json_data = request.form.get('jsonData') - service_mod.install_service(service, json_data) + return service_mod.install_service(service, json_data) @bp.route('//version/')