From ccb8318341f0129a1eb75ef15b8073af888295a6 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 20 Nov 2025 22:08:39 +0000 Subject: [PATCH] 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. --- .../library_browser/view/filtered_library_items_page.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/features/library_browser/view/filtered_library_items_page.dart b/lib/features/library_browser/view/filtered_library_items_page.dart index 6529fb3..07392d1 100644 --- a/lib/features/library_browser/view/filtered_library_items_page.dart +++ b/lib/features/library_browser/view/filtered_library_items_page.dart @@ -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) {