mirror of
https://github.com/Readarr/Readarr
synced 2025-12-15 21:02:40 +01:00
New: Support kepub (as epub)
This commit is contained in:
parent
399ee8d2e7
commit
fea34add4b
2 changed files with 2 additions and 0 deletions
|
|
@ -68,6 +68,7 @@ public ParsedTrackInfo ReadTags(IFileInfo file)
|
|||
case ".pdf":
|
||||
return ReadPdf(file.FullName);
|
||||
case ".epub":
|
||||
case ".kepub":
|
||||
return ReadEpub(file.FullName);
|
||||
case ".azw3":
|
||||
case ".mobi":
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ static MediaFileExtensions()
|
|||
_textExtensions = new Dictionary<string, Quality>(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
{ ".epub", Quality.EPUB },
|
||||
{ ".kepub", Quality.EPUB },
|
||||
{ ".mobi", Quality.MOBI },
|
||||
{ ".azw3", Quality.AZW3 },
|
||||
{ ".pdf", Quality.PDF },
|
||||
|
|
|
|||
Loading…
Reference in a new issue