fix: 修复应读参数,bz=2 改为 bz=0(适配网站更新)

网站参数变更:
- bz=0: 应读
- bz=1: 已读
- bz=2: 已读(旧参数,已废弃)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-14 12:43:25 +08:00
parent 1b85f34a0f
commit f8bbe3da0d
2 changed files with 2 additions and 2 deletions

View File

@@ -426,7 +426,7 @@ class APIBrowser:
if '注册前' in browse_type_text:
bz = 0 # 注册前未读
else:
bz = 2 # 应读
bz = 0 # 应读(网站更新后 bz=0 为应读)
self.log(f"[API] 开始浏览 '{browse_type}' (bz={bz})...")

View File

@@ -268,7 +268,7 @@ def take_screenshot_for_account(
if "注册前" in str(browse_type):
bz = 0
else:
bz = 2 # 应读
bz = 0 # 应读(网站更新后 bz=0 为应读)
target_url = f"{base}/admin/center.aspx?bz={bz}"
index_url = config.ZSGL_INDEX_URL or f"{base}/admin/index.aspx"
run_script = (