chore(lint) make the linter happy

This commit is contained in:
Tobias Gesellchen
2026-05-15 14:13:24 +02:00
parent 673be16f4f
commit 7d3359dfb4
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -908,7 +908,6 @@ func setupRouter(server *handlers.Server) *chi.Mux {
r.Post("/v1/favorite/{stationID}", server.HandleTuneInFavorite)
r.Delete("/v1/favorite/{stationID}", server.HandleTuneInDeleteFavorite)
})
})
// Orion (LOCAL_INTERNET_RADIO) lives at the top level — the BMX registry
@@ -156,6 +156,7 @@ func registerRoutes(mux *http.ServeMux, overrides map[string][]byte) {
func serveFixtureOr(embedPath string, override []byte) http.HandlerFunc {
if override != nil {
snapshot := append([]byte(nil), override...)
return func(w http.ResponseWriter, _ *http.Request) {
w.Header().Set("Content-Type", "application/xml; charset=utf-8")
_, _ = w.Write(snapshot)