fix: rename bulk test action to skip manually disabled channels

This commit is contained in:
Seefs
2026-02-12 15:09:30 +08:00
parent 4ac59ca6e6
commit 30fed3cc5c
9 changed files with 19 additions and 2 deletions

View File

@@ -804,6 +804,9 @@ func testAllChannels(notify bool) error {
}()
for _, channel := range channels {
if channel.Status == common.ChannelStatusManuallyDisabled {
continue
}
isChannelEnabled := channel.Status == common.ChannelStatusEnabled
tik := time.Now()
result := testChannel(channel, "", "", false)