Skip to content
This repository was archived by the owner on Sep 25, 2024. It is now read-only.

Commit 969a0c2

Browse files
committed
fix free account detection with download_music_video
1 parent 7057e33 commit 969a0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spotify_web_downloader/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def main(
336336
if not spotify_api.is_premium and premium_quality:
337337
logger.critical("Cannot download in premium quality with a free account")
338338
return
339-
if download_mode_video and not spotify_api.is_premium:
339+
if not spotify_api.is_premium and download_music_video:
340340
logger.critical("Cannot download music videos with a free account")
341341
return
342342
error_count = 0

0 commit comments

Comments
 (0)