This commit is contained in:
lpf
2026-02-15 00:34:47 +08:00
parent 1e4bf34fac
commit 1ac0fb123b
3 changed files with 25 additions and 2 deletions

View File

@@ -295,7 +295,7 @@ func (m *Manager) GetStatus() map[string]interface{} {
defer m.mu.RUnlock()
status := make(map[string]interface{})
for name, channel := range m.channels {
for name := range m.channels {
status[name] = map[string]interface{}{}
}
return status