add "live in" to live album check strings

This commit is contained in:
geoffrey45
2023-02-07 14:19:32 +03:00
parent 7675c0e5c9
commit 7335882365
+1 -1
View File
@@ -169,7 +169,7 @@ class Album:
""" """
Checks if the album is a live album. Checks if the album is a live album.
""" """
keywords = ["live from", "live at"] keywords = ["live from", "live at", "live in"]
for keyword in keywords: for keyword in keywords:
if keyword in self.title.lower(): if keyword in self.title.lower():
return True return True