#28 wrong filesnames

This commit is contained in:
glax 2023-05-26 14:36:02 +02:00
parent ec25900ac0
commit eef0955009

View File

@ -283,7 +283,7 @@ public class MangaDex : Connector
}
string fileInCache = Path.Join(settings.coverImageCache, publication.coverFileNameInCache);
string newFilePath = Path.Join(publicationFolder, Path.GetFileName(fileInCache));
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(), $"Done cloning cover {publication.sortName}");