Always update playlist file after download

This commit is contained in:
Rafael Moraes
2026-02-26 18:33:44 -03:00
parent 10e10e9ae1
commit c59fa50ed2
+5 -5
View File
@@ -194,11 +194,11 @@ class SpotifyDownloader:
item.staged_path,
item.final_path,
)
if item.playlist_file_path and self.save_playlist_file:
self.base.update_playlist_file(
item.playlist_file_path,
item.media.playlist_tags,
)
if item.playlist_file_path and self.save_playlist_file:
self.base.update_playlist_file(
item.playlist_file_path,
item.media.playlist_tags,
)
def _write_cover_file(self, cover_path: str, cover_bytes: bytes) -> None:
logger.debug(f"Writing cover: {cover_path}")