feat(ingestion): implement hybrid metadata verification form in ingestion modal #34

This commit is contained in:
2026-05-12 14:55:34 +02:00
parent fe5ff81c98
commit 94fd7cf5c1
13 changed files with 431 additions and 22 deletions
@@ -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)
{