From 1f33a6e1981cec5a594299c5c36df3117ecdfdcb Mon Sep 17 00:00:00 2001 From: OzGav Date: Wed, 8 Oct 2025 08:55:44 +1000 Subject: [PATCH] Enhance soundtrack indicators (#2490) This will now catch "Music from the Miramax Motion Picture" for example. --- music_assistant/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/constants.py b/music_assistant/constants.py index 5cc940f0..c2a3ae9b 100644 --- a/music_assistant/constants.py +++ b/music_assistant/constants.py @@ -993,7 +993,7 @@ LIVE_INDICATORS = [ SOUNDTRACK_INDICATORS = [ r"\bsoundtrack\b", # Catches all soundtrack variations - r"\bmusic from the motion picture\b", + r"\bmusic from the .* motion picture\b", r"\boriginal score\b", r"\bthe score\b", r"\bfilm score\b", -- 2.34.1