From 7335882365f7d87cd26e1613b6b9bce7577eb649 Mon Sep 17 00:00:00 2001 From: geoffrey45 Date: Tue, 7 Feb 2023 14:19:32 +0300 Subject: [PATCH] add "live in" to live album check strings --- app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models.py b/app/models.py index cbf5b15c..3bfac663 100644 --- a/app/models.py +++ b/app/models.py @@ -169,7 +169,7 @@ class 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: if keyword in self.title.lower(): return True