We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fa747e commit cf1f767Copy full SHA for cf1f767
1 file changed
src/server/user_handler.py
@@ -59,7 +59,8 @@ def __call__(self, task):
59
60
raw = task.res.GetText()
61
data["data"] = raw
62
- data["st"] = Str.NotFound
+ if not raw:
63
+ data["st"] = Str.NotFound
64
except Exception as es:
65
pass
66
finally:
@@ -79,7 +80,8 @@ def __call__(self, task):
79
80
return
81
82
83
84
85
86
87
0 commit comments