🐛 修复任务查询报错

- 一处 `_send_request()` 方法漏改
This commit is contained in:
Cp0204 2024-12-05 11:24:07 +08:00
parent 47d05dc37b
commit 4c8b9c448e

View File

@ -381,7 +381,7 @@ class Quark:
"__dt": int(random.uniform(1, 5) * 60 * 1000), "__dt": int(random.uniform(1, 5) * 60 * 1000),
"__t": datetime.now().timestamp(), "__t": datetime.now().timestamp(),
} }
response = requests.request("GET", url, params=querystring).json() response = self._send_request("GET", url, params=querystring).json()
if response["data"]["status"] != 0: if response["data"]["status"] != 0:
if retry_index > 0: if retry_index > 0:
print() print()