mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #3837 from omnivore-app/fix/search-return-content
include readable content in search api response by default
This commit is contained in:
commit
cbb0e3d8ec
1 changed files with 1 additions and 1 deletions
|
|
@ -681,7 +681,7 @@ export const searchResolver = authorized<
|
|||
from: Number(startCursor),
|
||||
size: first + 1, // fetch one more item to get next cursor
|
||||
includePending: true,
|
||||
includeContent: !!params.includeContent,
|
||||
includeContent: params.includeContent ?? true, // by default include content for offline use for now
|
||||
includeDeleted: params.query?.includes('in:trash'),
|
||||
query: params.query,
|
||||
useFolders: params.query?.includes('use:folders'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue