From 7f0020f0446062305e82241d6fe88084adab4458 Mon Sep 17 00:00:00 2001 From: arne Date: Fri, 11 Apr 2025 07:05:47 +0200 Subject: [PATCH] Support openSubsonic compatible servers (like gonic --- src/cljs/airsonic_ui/api/helpers.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cljs/airsonic_ui/api/helpers.cljs b/src/cljs/airsonic_ui/api/helpers.cljs index 8483861..e2310d5 100644 --- a/src/cljs/airsonic_ui/api/helpers.cljs +++ b/src/cljs/airsonic_ui/api/helpers.cljs @@ -44,7 +44,7 @@ (defn- unwrap-response* [response] (-> (:subsonic-response response) - (dissoc :status :version) + (dissoc :status :version :type :serverVersion :openSubsonic) vals first))