#28 why was there a '!'
This commit is contained in:
parent
eef0955009
commit
f9f802155d
@ -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}");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user