Fixes before Release (#3172)

This commit is contained in:
Joe Milazzo 2024-09-16 17:08:15 -05:00 committed by GitHub
parent 844d7c7e4b
commit d6ee97816f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 208 additions and 52 deletions

View file

@ -13,7 +13,7 @@ public class BookParser(IDirectoryService directoryService, IBookService bookSer
info.ComicInfo = comicInfo;
// We need a special piece of code to override the Series IF there is a special marker in the filename for epub files
if (info.IsSpecial && info.Volumes == "0" && info.ComicInfo.Series != info.Series)
if (info.IsSpecial && info.Volumes is "0" or "0.0" && info.ComicInfo.Series != info.Series)
{
info.Series = info.ComicInfo.Series;
}