Api: Fix showing "HEADERS incomplete"

This commit is contained in:
Jerry Yan 2019-03-14 19:17:23 +08:00 committed by JerryYan
parent 426f4d6273
commit 7692757091

4
api.py
View File

@ -163,6 +163,10 @@ class XiGuaLiveApi:
if "data" not in d or "extra" not in d or "cursor" not in d["extra"]:
if DEBUG:
print(d)
if "base_resp" in d:
if d["base_resp"]["status_code"] != 10038:
print(d["base_resp"]["status_message"])
else:
self.apiChangedError("数据结构改变,请与我联系")
return
else: