From b72bd21192f99d8a8939be1492e7a3d3073734a4 Mon Sep 17 00:00:00 2001 From: kuba Date: Fri, 6 Sep 2024 12:15:08 +0200 Subject: [PATCH] added note regarding sync duplicates --- spotdl/console/sync.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spotdl/console/sync.py b/spotdl/console/sync.py index 0748ef92b..be8852017 100644 --- a/spotdl/console/sync.py +++ b/spotdl/console/sync.py @@ -151,6 +151,9 @@ def sync( if path != new_path: to_rename.append((path, new_path)) + # TODO: Downloading duplicate songs in the same playlist + # will trigger a re-download of the song. To fix this we have to copy the song + # to the new location without removing the old one. for old_path, new_path in to_rename: if old_path.exists(): logger.info("Renaming %s to %s", f"'{old_path}'", f"'{new_path}'")