mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
Search for categories case-insensitive
The string was already lowercased, but the comparison was not. Fixes #568
This commit is contained in:
parent
623a61dbb6
commit
f0f0e6e0d4
@ -36,7 +36,7 @@ object TagItemName {
|
|||||||
|
|
||||||
def itemsInAllCategories(cats: NonEmptyList[String]): Select =
|
def itemsInAllCategories(cats: NonEmptyList[String]): Select =
|
||||||
intersect(
|
intersect(
|
||||||
cats.map(cat => Select(ti.itemId.s, taggedItems, t.category === cat).distinct)
|
cats.map(cat => Select(ti.itemId.s, taggedItems, t.category.lowerEq(cat)).distinct)
|
||||||
)
|
)
|
||||||
|
|
||||||
def itemsWithEitherTag(tags: NonEmptyList[Ident]): Select =
|
def itemsWithEitherTag(tags: NonEmptyList[Ident]): Select =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user