From f9f802155d0f33d356bcc603b8ebccc57d4a01d2 Mon Sep 17 00:00:00 2001 From: glax Date: Fri, 26 May 2023 14:43:47 +0200 Subject: [PATCH] #28 why was there a '!' --- Tranga/Connectors/MangaDex.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tranga/Connectors/MangaDex.cs b/Tranga/Connectors/MangaDex.cs index 823a4a0..2aeaf26 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, "cover.", Path.GetFileName(fileInCache).Split('.')[^1]); - if(!File.Exists(fileInCache) && !File.Exists(newFilePath)) + if(File.Exists(fileInCache) && !File.Exists(newFilePath)) File.Copy(fileInCache, newFilePath); logger?.WriteLine(this.GetType().ToString(), $"Done cloning cover {publication.sortName}");