From f0f0e6e0d40be2b27bea56ac0a0e7dadca62d110 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Sun, 17 Jan 2021 20:10:24 +0100 Subject: [PATCH] Search for categories case-insensitive The string was already lowercased, but the comparison was not. Fixes #568 --- .../src/main/scala/docspell/store/records/TagItemName.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/store/src/main/scala/docspell/store/records/TagItemName.scala b/modules/store/src/main/scala/docspell/store/records/TagItemName.scala index 9b7d8b77..71d261bf 100644 --- a/modules/store/src/main/scala/docspell/store/records/TagItemName.scala +++ b/modules/store/src/main/scala/docspell/store/records/TagItemName.scala @@ -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 =