mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Fix search condition for empty items set
This commit is contained in:
parent
4ec133b0b9
commit
36858da624
@ -213,7 +213,9 @@ object QItem {
|
|||||||
q.dueDateFrom.map(d => i.dueDate > d) &&?
|
q.dueDateFrom.map(d => i.dueDate > d) &&?
|
||||||
q.dueDateTo.map(d => i.dueDate < d) &&?
|
q.dueDateTo.map(d => i.dueDate < d) &&?
|
||||||
q.source.map(n => i.source.like(QueryWildcard.lower(n))) &&?
|
q.source.map(n => i.source.like(QueryWildcard.lower(n))) &&?
|
||||||
q.itemIds.flatMap(s => Nel.fromList(s.toList)).map(nel => i.id.in(nel)) &&?
|
q.itemIds.map(s =>
|
||||||
|
Nel.fromList(s.toList).map(nel => i.id.in(nel)).getOrElse(i.id.isNull)
|
||||||
|
) &&?
|
||||||
TagItemName
|
TagItemName
|
||||||
.itemsWithAllTagAndCategory(q.tagsInclude, q.tagCategoryIncl)
|
.itemsWithAllTagAndCategory(q.tagsInclude, q.tagCategoryIncl)
|
||||||
.map(subsel => i.id.in(subsel)) &&?
|
.map(subsel => i.id.in(subsel)) &&?
|
||||||
|
Loading…
x
Reference in New Issue
Block a user