check for synced_lyrics_only before saving cover

This commit is contained in:
Rafael Moraes 2024-09-08 00:26:56 -03:00
parent d6f30aa0a2
commit d97445ec9e

View File

@ -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')