From 85846fc91636181fa18748e31213a2a869d111d6 Mon Sep 17 00:00:00 2001 From: Halhadus Date: Tue, 18 Feb 2025 06:26:25 -0500 Subject: [PATCH] Set album name "Music" for unknown album var --- addotherproviders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addotherproviders.py b/addotherproviders.py index 8202904..6138737 100644 --- a/addotherproviders.py +++ b/addotherproviders.py @@ -110,7 +110,7 @@ def process_downloads(): tag = tinytag.TinyTag.get(final_path) metadata = { 'artist': tag.artist or 'Unknown', - 'album': tag.album or 'Unknown', + 'album': tag.album or 'Music', 'title': tag.title or display_name, 'duration': tag.duration or 0 }