feat(ingestion): implement hybrid metadata verification form in ingestion modal #34
This commit is contained in:
@@ -228,7 +228,7 @@ public class EpubMetadataExtractor : IEpubMetadataExtractor
|
||||
var title = bookRef.Title ?? "Unknown Title";
|
||||
var author = bookRef.Author ?? "Unknown Author";
|
||||
byte[]? cover = await bookRef.ReadCoverAsync();
|
||||
return Result.Ok(new LocalEpubMetadata(title, author, cover));
|
||||
return Result.Ok(new LocalEpubMetadata { Title = title, Author = author, CoverImage = cover });
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user