Merge pull request #2926 from seefs001/fix/status_code_mapping

fix: support numeric status code mapping in ResetStatusCode
This commit is contained in:
Calcium-Ion
2026-02-12 15:27:36 +08:00
committed by GitHub
15 changed files with 234 additions and 33 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)