Skip to content

Commit

Permalink
Add release notes, fix type check
Browse files Browse the repository at this point in the history
  • Loading branch information
dymanoid committed Jun 19, 2024
1 parent 421e4d6 commit 51848b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/loot-core/src/platform/server/sqlite/unicodeLike.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @ts-strict-ignore
import LRU from 'lru-cache';

const likePatternCache = new LRU({ max: 500 });
Expand All @@ -10,7 +11,7 @@ export function UnicodeLike(
return 0;
}

if (!value){
if (!value) {
value = '';
}

Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/2903.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [dymanoid]
---

Use Unicode-aware database queries for filtering and searching.

0 comments on commit 51848b3

Please sign in to comment.