diff --git a/Tranga/Connectors/MangaDex.cs b/Tranga/Connectors/MangaDex.cs index 2aeaf26..4bdaffe 100644 --- a/Tranga/Connectors/MangaDex.cs +++ b/Tranga/Connectors/MangaDex.cs @@ -284,8 +284,8 @@ public class MangaDex : Connector string fileInCache = Path.Join(settings.coverImageCache, publication.coverFileNameInCache); string newFilePath = Path.Join(publicationFolder, "cover.", Path.GetFileName(fileInCache).Split('.')[^1]); - if(File.Exists(fileInCache) && !File.Exists(newFilePath)) - File.Copy(fileInCache, newFilePath); + logger?.WriteLine(this.GetType().ToString(), $"Cloning cover {fileInCache} -> {newFilePath}"); + File.Copy(fileInCache, newFilePath, true); logger?.WriteLine(this.GetType().ToString(), $"Done cloning cover {publication.sortName}"); }