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__