add TODO: Move parsing title, album and artist to startup.

This commit is contained in:
geoffrey45 2023-02-01 14:48:23 +03:00
parent 838e19cf0f
commit 7640f2cc1a

View File

@ -116,6 +116,8 @@ def get_tags(filepath: str):
else:
setattr(tags, tag, "Unknown")
# TODO: Move parsing title, album and artist to startup.
to_check = ["album", "year", "albumartist"]
for prop in to_check:
p = getattr(tags, prop)