add "super hits" to compilation album trigger words

This commit is contained in:
geoffrey45 2023-02-07 21:27:55 +03:00
parent c098025f0e
commit 0b0ff4218a

View File

@ -159,7 +159,8 @@ class Album:
if "various artists" in artists:
return True
substrings = ["the essential", "best of", "greatest hits", "#1 hits", "number ones"]
substrings = ["the essential", "best of", "greatest hits", "#1 hits", "number ones", "super hits"]
for substring in substrings:
if substring in self.title.lower():
return True