From af5fcfc979d5e46f64aaccd344e2b31791d2e42c Mon Sep 17 00:00:00 2001 From: emeric Date: Fri, 12 Sep 2025 08:38:02 +0200 Subject: [PATCH] Fixed typo in the reported explicit content value, fixes #743 --- src/libs/subsonic/impl/responses/Song.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/subsonic/impl/responses/Song.cpp b/src/libs/subsonic/impl/responses/Song.cpp index 9f83c76d..6c03545a 100644 --- a/src/libs/subsonic/impl/responses/Song.cpp +++ b/src/libs/subsonic/impl/responses/Song.cpp @@ -247,7 +247,7 @@ namespace lms::api::subsonic case db::Advisory::Clean: return "clean"; case db::Advisory::Explicit: - return "expicit"; + return "explicit"; case db::Advisory::Unknown: case db::Advisory::UnSet: break;