From 1e69ee8a140b7761f3ebdebf1b1d9e31af79bd2c Mon Sep 17 00:00:00 2001 From: imgyh <1974355683@qq.com> Date: Sun, 28 May 2023 15:47:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(webapi):=20=E4=BF=AE=E5=A4=8D=E4=BD=9C?= =?UTF-8?q?=E5=93=81=E5=88=97=E8=A1=A8=E4=B8=BA=E7=A9=BA=E6=97=B6=E4=B8=8D?= =?UTF-8?q?=E8=BF=94=E5=9B=9Ecursor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix #40 --- WebApi.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/WebApi.py b/WebApi.py index 284ef3b..9a3621d 100644 --- a/WebApi.py +++ b/WebApi.py @@ -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