mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-02-24 02:09:35 +00:00
fix: request full metadata for series-filtered books
Added minified: false to GetLibrarysItemsReqParams to ensure the API returns complete book metadata including titles and authors. The logs showed that series-filtered items were returning bookMinified variant with empty title and null authorName fields. This change requests the full metadata variant which includes all necessary fields.
This commit is contained in:
parent
7d2877c1bb
commit
ccb8318341
1 changed files with 1 additions and 0 deletions
|
|
@ -51,6 +51,7 @@ class FilteredLibraryItemsPage extends HookConsumerWidget {
|
||||||
filter: filter,
|
filter: filter,
|
||||||
sort: sortParam,
|
sort: sortParam,
|
||||||
limit: 100,
|
limit: 100,
|
||||||
|
minified: false, // Request full metadata to get titles and authors
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
builder: (context, snapshot) {
|
builder: (context, snapshot) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue