updated queue and playlist fallback

This commit is contained in:
coolgitternotin
2025-03-24 12:20:16 -06:00
parent e916684092
commit 5701dd8b04
3 changed files with 138 additions and 45 deletions

View File

@@ -1041,7 +1041,11 @@ def download_playlist(self, **task_data):
custom_dir_format=custom_dir_format,
custom_track_format=custom_track_format,
pad_tracks=pad_tracks,
progress_callback=self.progress_callback
initial_retry_delay=initial_retry_delay,
retry_delay_increase=retry_delay_increase,
max_retries=max_retries,
progress_callback=self.progress_callback,
spotify_quality=fall_quality
)
return {"status": "success", "message": "Playlist download completed"}

View File

@@ -95,7 +95,8 @@ def download_playlist(
pad_tracks=pad_tracks,
initial_retry_delay=initial_retry_delay,
retry_delay_increase=retry_delay_increase,
max_retries=max_retries
max_retries=max_retries,
spotify_quality=fall_quality
)
print(f"DEBUG: Playlist download completed successfully using Deezer credentials")
except Exception as e: