mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-23 19:39:30 +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,
|
||||
sort: sortParam,
|
||||
limit: 100,
|
||||
minified: false, // Request full metadata to get titles and authors
|
||||
),
|
||||
),
|
||||
builder: (context, snapshot) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue