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:
Claude 2025-11-20 22:08:39 +00:00
parent 7d2877c1bb
commit ccb8318341
No known key found for this signature in database

View file

@ -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) {