Lots of Bugfixes (#3308)
This commit is contained in:
parent
edbd44bbee
commit
1a88dd4fc0
36 changed files with 331 additions and 588 deletions
|
|
@ -9,7 +9,6 @@ namespace API.Services;
|
|||
|
||||
public interface IReadingItemService
|
||||
{
|
||||
ComicInfo? GetComicInfo(string filePath);
|
||||
int GetNumberOfPages(string filePath, MangaFormat format);
|
||||
string GetCoverImage(string filePath, string fileName, MangaFormat format, EncodeFormat encodeFormat, CoverImageSize size = CoverImageSize.Default);
|
||||
void Extract(string fileFilePath, string targetDirectory, MangaFormat format, int imageCount = 1);
|
||||
|
|
@ -51,7 +50,7 @@ public class ReadingItemService : IReadingItemService
|
|||
/// </summary>
|
||||
/// <param name="filePath">Fully qualified path of file</param>
|
||||
/// <returns></returns>
|
||||
public ComicInfo? GetComicInfo(string filePath)
|
||||
private ComicInfo? GetComicInfo(string filePath)
|
||||
{
|
||||
if (Parser.IsEpub(filePath))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue