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_songs = load_server_songs()
|
||||||
server_duplicates_tracking = load_server_duplicates_tracking()
|
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
|
# Further filter out songs already on server or marked as duplicates
|
||||||
if self.force_download:
|
if self.force_download:
|
||||||
not_on_server = undownloaded
|
not_on_server = undownloaded
|
||||||
print(f"💪 Force mode enabled - will download all songs regardless of server status")
|
print(f"💪 Force mode enabled - will download all songs regardless of server status")
|
||||||
else:
|
else:
|
||||||
not_on_server = []
|
not_on_server = []
|
||||||
server_available_mp4 = 0
|
|
||||||
server_available_other = 0
|
|
||||||
marked_duplicates = 0
|
|
||||||
|
|
||||||
for song in undownloaded:
|
for song in undownloaded:
|
||||||
artist, title = song["artist"], song["title"]
|
artist, title = song["artist"], song["title"]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user