Skip to content

Commit

Permalink
Fix ismcast
Browse files Browse the repository at this point in the history
  • Loading branch information
snejus committed Jul 26, 2023
1 parent c65c2a1 commit a27a49c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion beetsplug/bandcamp/soundcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}$",
Expand Down

0 comments on commit a27a49c

Please sign in to comment.