Signed-off-by: mbrucedogs <mbrucedogs@gmail.com>
This commit is contained in:
parent
81b3d2d88c
commit
8dbc2fb8fd
@ -416,15 +416,17 @@ class KaraokeDownloader:
|
||||
server_songs = load_server_songs()
|
||||
server_duplicates_tracking = load_server_duplicates_tracking()
|
||||
|
||||
# Initialize counters for logging
|
||||
server_available_mp4 = 0
|
||||
server_available_other = 0
|
||||
marked_duplicates = 0
|
||||
|
||||
# Further filter out songs already on server or marked as duplicates
|
||||
if self.force_download:
|
||||
not_on_server = undownloaded
|
||||
print(f"💪 Force mode enabled - will download all songs regardless of server status")
|
||||
else:
|
||||
not_on_server = []
|
||||
server_available_mp4 = 0
|
||||
server_available_other = 0
|
||||
marked_duplicates = 0
|
||||
|
||||
for song in undownloaded:
|
||||
artist, title = song["artist"], song["title"]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user