diff --git a/Tranga/Connectors/MangaDex.cs b/Tranga/Connectors/MangaDex.cs index d8a247a..b4a05d2 100644 --- a/Tranga/Connectors/MangaDex.cs +++ b/Tranga/Connectors/MangaDex.cs @@ -284,7 +284,7 @@ public class MangaDex : Connector string fileInCache = Path.Join(settings.coverImageCache, publication.coverFileNameInCache); string newFilePath = Path.Join(publicationFolder, Path.GetFileName(fileInCache)); - if(File.Exists(fileInCache)) + if(!File.Exists(fileInCache) && !File.Exists(newFilePath)) File.Copy(fileInCache, newFilePath); }