From 7d8701db0a6a945e4179c6a7abdd2a9b92e5ad2c Mon Sep 17 00:00:00 2001 From: Cp0204 Date: Thu, 5 Dec 2024 11:24:07 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E4=BF=AE=E5=A4=8D=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E6=9F=A5=E8=AF=A2=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 一处 `_send_request()` 方法漏改 --- quark_auto_save.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quark_auto_save.py b/quark_auto_save.py index e63b6e8..6f45a61 100644 --- a/quark_auto_save.py +++ b/quark_auto_save.py @@ -381,7 +381,7 @@ class Quark: "__dt": int(random.uniform(1, 5) * 60 * 1000), "__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 retry_index > 0: print()