Fixed unit test, fixed code.

This commit is contained in:
Joseph Milazzo 2025-06-23 18:38:45 -05:00
parent 2cc6873e7a
commit 62b94ce311
5 changed files with 18 additions and 4 deletions

View file

@ -81,7 +81,10 @@ public class ComicVineParser(IDirectoryService directoryService) : DefaultParser
info.IsSpecial = Parser.IsSpecial(info.Filename, type) || Parser.IsSpecial(info.ComicInfo?.Format, type);
// Patch in other information from ComicInfo
UpdateFromComicInfo(info);
if (enableMetadata)
{
UpdateFromComicInfo(info);
}
if (string.IsNullOrEmpty(info.Series))
{