#182 Remove covers that have no asssociated Manga

This commit is contained in:
Glax 2024-05-26 18:46:40 +02:00
parent 98bd8a983b
commit e3211b95e2

View File

@ -180,12 +180,9 @@ public class JobBoss : GlobalBase
AddMangaToCache(dncJob.manga);
}
HashSet<string> coverFileNames = GetAllCachedManga().Select(manga => manga.coverFileNameInCache!).ToHashSet();
foreach (string fileName in Directory.GetFiles(settings.coverImageCache)) //Cleanup Unused Covers
{
if(!coverFileNames.Any(existingManga => fileName.Contains(existingManga)))
string[] coverFiles = Directory.GetFiles(settings.coverImageCache);
foreach(string fileName in coverFiles.Where(fileName => !GetAllCachedManga().Any(manga => manga.coverFileNameInCache == fileName)))
File.Delete(fileName);
}
}
internal void UpdateJobFile(Job job, string? oldFile = null)