This commit is contained in:
mungai-njoroge
2023-07-17 11:30:05 +03:00
parent 861a854f91
commit e70d787580
4 changed files with 26 additions and 7 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ class ProcessAlbumColors:
"""
def __init__(self) -> None:
albums = [a for a in AlbumStore.albums if len(a.colors) == 0]
albums = [a for a in AlbumStore.albums if a is None or len(a.colors) == 0]
with SQLiteManager() as cur:
try: