From 1b658c76a34d444b0595520a21e36e6f18ac64b8 Mon Sep 17 00:00:00 2001 From: Athou Date: Mon, 15 Jul 2024 12:41:13 +0200 Subject: [PATCH] show both read and unread entries when searching with keywords --- commafeed-client/src/app/entries/thunks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commafeed-client/src/app/entries/thunks.ts b/commafeed-client/src/app/entries/thunks.ts index 7523636d..eb9eca28 100644 --- a/commafeed-client/src/app/entries/thunks.ts +++ b/commafeed-client/src/app/entries/thunks.ts @@ -40,7 +40,7 @@ export const loadMoreEntries = createAppAsyncThunk("entries/loadMore", async (_, const buildGetEntriesPaginatedRequest = (state: RootState, source: EntrySource, offset: number) => ({ id: source.type === "tag" ? Constants.categories.all.id : source.id, order: state.user.settings?.readingOrder, - readType: state.user.settings?.readingMode, + readType: state.entries.search ? "all" : state.user.settings?.readingMode, offset, limit: 50, tag: source.type === "tag" ? source.id : undefined,