Работа над BookInfoDialog

This commit is contained in:
Book Pauk
2022-11-10 00:59:47 +07:00
parent 1d99472ca1
commit 79e6ca2d27
3 changed files with 33 additions and 16 deletions

View File

@@ -480,8 +480,8 @@ class WebWorker {
result.fb2 = false;
if (book.ext == 'fb2') {
const {desc, cover, coverExt} = await this.fb2Helper.getDescAndCover(bookFile);
result.fb2 = desc;
const {fb2, cover, coverExt} = await this.fb2Helper.getDescAndCover(bookFile);
result.fb2 = fb2;
if (cover) {
result.cover = `${this.config.filesPathStatic}/${hash}${coverExt}`;