add featured artists to playlist page

+ fetch album bio on raising bottom container
This commit is contained in:
geoffrey45
2022-07-08 16:39:16 +03:00
parent 9d5cbfcc93
commit 09c588c856
15 changed files with 154 additions and 84 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ from typing import List
from app import instances
from app import settings
from app.helpers import create_album_hash
from app.helpers import create_hash
from app.helpers import Get
from app.helpers import run_fast_scandir
from app.helpers import UseBisection
@@ -51,7 +51,7 @@ class Populate:
tags = get_tags(file)
if tags is not None:
hash = create_album_hash(tags["album"], tags["albumartist"])
hash = create_hash(tags["album"], tags["albumartist"])
tags["albumhash"] = hash
self.tagged_tracks.append(tags)