虎牙精英宝典

This commit is contained in:
yml2213
2026-08-31 19:34:59 +08:00
parent d391e2ce3e
commit 955ba45488
16 changed files with 743 additions and 5 deletions
+6 -1
View File
@@ -60,6 +60,7 @@ class HuyaBatchRunner(
self._push_log("info", f"[{current}/{total}] 开始虎牙任务: {name}")
if self.task_type not in {
"query_act_tasks",
"query_points",
"get_bind_qr",
"confirm_bind",
@@ -77,7 +78,11 @@ class HuyaBatchRunner(
return
try:
if self.task_type == "query_points":
if self.task_type == "query_act_tasks":
self._execute_query_act_tasks(
worker_db, task, account, account_info, config_info
)
elif self.task_type == "query_points":
self._execute_query_points(
worker_db, task, account, account_info, config_info
)