()
| 1953 | |
| 1954 | // 批量检测订阅状态 |
| 1955 | async function handleBatchCheckSubscription() { |
| 1956 | const count = getEffectiveCount(); |
| 1957 | if (count === 0 || isBatchCheckingSubscription) return; |
| 1958 | const confirmed = await confirm(`确定要检测选中的 ${count} 个账号的订阅状态吗?`); |
| 1959 | if (!confirmed) return; |
| 1960 | await runBatchCheckSubscriptionTask(buildBatchPayload(), count, '批量检测订阅'); |
| 1961 | } |
| 1962 | |
| 1963 | // ============== Sub2API 上传 ============== |
| 1964 |
nothing calls this directly
no test coverage detected