From a27a49c00fdea013e161e9d06a479ccc5c010c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ar=C5=ABnas=20Nejus?= Date: Wed, 26 Jul 2023 17:23:43 +0100 Subject: [PATCH] Fix ismcast --- beetsplug/bandcamp/soundcloud.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beetsplug/bandcamp/soundcloud.py b/beetsplug/bandcamp/soundcloud.py index 19538e3..3d5e821 100644 --- a/beetsplug/bandcamp/soundcloud.py +++ b/beetsplug/bandcamp/soundcloud.py @@ -42,7 +42,9 @@ def parse_title(source: str, title: str) -> JSONDict: rf"^{album_pat}{_delim}{index_pat}{_delim}{artist_pat}$", # DISSENTIENT.SPACE rf"^{index_pat}{_delim}{artist_pat}{delim}$", - # Ismcast, DUSKCAST, POSSESSION, DETECT + # Ismcast + rf"^{album_pat}{index_pat}{_delim}{artist_pat}", + # DUSKCAST, POSSESSION, DETECT rf"^{album_pat}{index_pat}{_delim}{artist_pat}({delim}.*$|{label_pat})", # Axxidcast rf"^{album_pat}{_delim}{artist_pat}{_delim}(Live )?{index_pat}$",