ash преди 2 години
родител
ревизия
98076da8bc
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      Backend/Sources/View/view_manager.py

+ 3 - 1
Backend/Sources/View/view_manager.py

@@ -79,7 +79,9 @@ def after_request(response : flask.Response):
 
 
 def JsonStringToResponse(string : str) :
-    return jsonify(json.loads(string))
+    resp = jsonify(json.loads(string))
+    resp.status_code = 200
+    return
 
 def run() :
     global __server_process__