fix(webapi): 修复作品列表为空时不返回cursor

fix #40
This commit is contained in:
imgyh 2023-05-28 15:47:34 +08:00
parent ff72578a9c
commit 1e69ee8a14

View File

@ -56,14 +56,12 @@ def douyinwork(share_link, max_cursor, mode, cookie):
datadict = {}
if data is not None and data != []:
datadict["data"] = data
datadict["rawdata"] = rawdata
datadict["cursor"] = cursor
datadict["has_more"] = has_more
datadict["status_code"] = 200
else:
datadict["status_code"] = 500
datadict["data"] = data
datadict["rawdata"] = rawdata
datadict["cursor"] = cursor
datadict["has_more"] = has_more
return datadict