Search for categories case-insensitive

The string was already lowercased, but the comparison was not.

Fixes #568
This commit is contained in:
Eike Kettner 2021-01-17 20:10:24 +01:00
parent 623a61dbb6
commit f0f0e6e0d4

View File

@ -36,7 +36,7 @@ object TagItemName {
def itemsInAllCategories(cats: NonEmptyList[String]): Select =
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 =