From feef66da122a34dd2cbf6da0c1c18a1234d18513 Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Wed, 14 Jan 2026 01:09:17 -0500 Subject: [PATCH] fix: add required parameters for subsonic request --- engine/engine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/engine.go b/engine/engine.go index f259efb..31fe552 100644 --- a/engine/engine.go +++ b/engine/engine.go @@ -108,7 +108,7 @@ func Run( if cfg.SubsonicEnabled() { l.Debug().Msg("Engine: Checking Subsonic configuration") - pingURL := cfg.SubsonicUrl() + "/rest/ping.view?" + cfg.SubsonicParams() + "&f=json" + pingURL := cfg.SubsonicUrl() + "/rest/ping.view?" + cfg.SubsonicParams() + "&f=json&v=1&c=koito" resp, err := http.Get(pingURL) if err != nil {