Browse Source

status code

ash 2 năm trước cách đây
mục cha
commit
98076da8bc
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  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__