mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-01-02 16:29:31 +00:00
fix: add support for bookMinifiedSeriesFilter metadata variant in series view
This commit is contained in:
parent
b434f73b2a
commit
2b314696ac
1 changed files with 15 additions and 0 deletions
|
|
@ -162,6 +162,11 @@ class LibraryItemCard extends ConsumerWidget {
|
||||||
authorName = m.authors.map((a) => a.name).join(', ');
|
authorName = m.authors.map((a) => a.name).join(', ');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
bookMinifiedSeriesFilter: (m) {
|
||||||
|
_logger.info(' Found bookMinifiedSeriesFilter metadata variant!');
|
||||||
|
title = m.title ?? 'Unknown';
|
||||||
|
authorName = m.authorName;
|
||||||
|
},
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
bookMinified: (book) {
|
bookMinified: (book) {
|
||||||
|
|
@ -191,6 +196,11 @@ class LibraryItemCard extends ConsumerWidget {
|
||||||
authorName = m.authors.map((a) => a.name).join(', ');
|
authorName = m.authors.map((a) => a.name).join(', ');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
bookMinifiedSeriesFilter: (m) {
|
||||||
|
_logger.info(' Found bookMinifiedSeriesFilter metadata variant!');
|
||||||
|
title = m.title ?? 'Unknown';
|
||||||
|
authorName = m.authorName;
|
||||||
|
},
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
bookExpanded: (book) {
|
bookExpanded: (book) {
|
||||||
|
|
@ -220,6 +230,11 @@ class LibraryItemCard extends ConsumerWidget {
|
||||||
authorName = m.authors.map((a) => a.name).join(', ');
|
authorName = m.authors.map((a) => a.name).join(', ');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
bookMinifiedSeriesFilter: (m) {
|
||||||
|
_logger.info(' Found bookMinifiedSeriesFilter metadata variant!');
|
||||||
|
title = m.title ?? 'Unknown';
|
||||||
|
authorName = m.authorName;
|
||||||
|
},
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue