Skip to content

Commit

Permalink
check for synced_lyrics_only before saving cover
Browse files Browse the repository at this point in the history
  • Loading branch information
glomatico committed Sep 8, 2024
1 parent d6f30aa commit d97445e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gamdl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ def main(
)
logger.debug(f'Downloading to "{remuxed_path}"')
downloader.download_ytdlp(remuxed_path, stream_url)
if not save_cover:
if synced_lyrics_only or not save_cover:
pass
elif cover_path.exists() and not overwrite:
logger.debug(f'Cover already exists at "{cover_path}", skipping')
Expand Down

0 comments on commit d97445e

Please sign in to comment.