rollback playlist fallback

This commit is contained in:
coolgitternotin
2025-03-24 18:34:32 -06:00
parent 7cfff326d7
commit 6e9a2f5ff9
2 changed files with 2 additions and 5 deletions

View File

@@ -1050,7 +1050,6 @@ def download_playlist(self, **task_data):
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

@@ -20,7 +20,6 @@ def download_playlist(
retry_delay_increase=5,
max_retries=3,
progress_callback=None,
spotify_quality=None
):
try:
# DEBUG: Print parameters
@@ -97,7 +96,6 @@ def download_playlist(
initial_retry_delay=initial_retry_delay,
retry_delay_increase=retry_delay_increase,
max_retries=max_retries,
spotify_quality=spotify_quality or fall_quality
)
print(f"DEBUG: Playlist download completed successfully using Deezer credentials")
except Exception as e:
@@ -127,7 +125,7 @@ def download_playlist(
spo.download_playlist(
link_playlist=url,
output_dir="./downloads",
quality_download=spotify_quality or fall_quality,
quality_download=fall_quality,
recursive_quality=True,
recursive_download=False,
not_interface=False,
@@ -168,7 +166,7 @@ def download_playlist(
spo.download_playlist(
link_playlist=url,
output_dir="./downloads",
quality_download=spotify_quality or quality,
quality_download=quality,
recursive_quality=True,
recursive_download=False,
not_interface=False,