Api: Fix showing "HEADERS incomplete"
This commit is contained in:
parent
426f4d6273
commit
7692757091
6
api.py
6
api.py
@ -163,7 +163,11 @@ class XiGuaLiveApi:
|
||||
if "data" not in d or "extra" not in d or "cursor" not in d["extra"]:
|
||||
if DEBUG:
|
||||
print(d)
|
||||
self.apiChangedError("数据结构改变,请与我联系")
|
||||
if "base_resp" in d:
|
||||
if d["base_resp"]["status_code"] != 10038:
|
||||
print(d["base_resp"]["status_message"])
|
||||
else:
|
||||
self.apiChangedError("数据结构改变,请与我联系")
|
||||
return
|
||||
else:
|
||||
self._cursor = d["extra"]["cursor"]
|
||||
|
Reference in New Issue
Block a user