refactor: run Go modernize

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan
2026-02-09 08:44:44 -05:00
parent 8319905d2c
commit c280dd67a4
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -7,6 +7,7 @@ import (
"crypto/sha256"
"encoding/base64"
"encoding/hex"
"maps"
"net/http"
"net/http/httptest"
"os"
@@ -594,9 +595,7 @@ func (t *testableWebSocketService) getConnectionCount() int {
func (t *testableWebSocketService) closeAllConnections() {
t.mu.Lock()
conns := make(map[string]*wsConnection, len(t.connections))
for k, v := range t.connections {
conns[k] = v
}
maps.Copy(conns, t.connections)
t.connections = make(map[string]*wsConnection)
t.mu.Unlock()