Lots of Bugfixes (#2977)
This commit is contained in:
parent
8c629695ef
commit
616ed7a75d
26 changed files with 427 additions and 244 deletions
|
@ -847,7 +847,7 @@ public class BookService : IBookService
|
|||
Filename = Path.GetFileName(filePath),
|
||||
Title = specialName?.Trim() ?? string.Empty,
|
||||
FullFilePath = Parser.NormalizePath(filePath),
|
||||
IsSpecial = false,
|
||||
IsSpecial = Parser.HasSpecialMarker(filePath),
|
||||
Series = series.Trim(),
|
||||
SeriesSort = series.Trim(),
|
||||
Volumes = seriesIndex
|
||||
|
@ -869,7 +869,7 @@ public class BookService : IBookService
|
|||
Filename = Path.GetFileName(filePath),
|
||||
Title = epubBook.Title.Trim(),
|
||||
FullFilePath = Parser.NormalizePath(filePath),
|
||||
IsSpecial = false,
|
||||
IsSpecial = Parser.HasSpecialMarker(filePath),
|
||||
Series = epubBook.Title.Trim(),
|
||||
Volumes = Parser.LooseLeafVolume,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue