Skip to content

Commit 07ffe0c

Browse files
committed
pIndexFile : dictionary words are normalized to non diacritics letters when loading
1 parent fa5afef commit 07ffe0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

zip/plugins/pIndexFile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class pIndexFile extends IPlugin {
4444
const aliasName = this.aliasName;
4545

4646
const h_EVT_IF_SET = (data) => {
47-
index = newKeywordDatabase(aliasName, data.keywords.toLowerCase(), data.mapping);
47+
index = newKeywordDatabase(aliasName, textCleanupPhrase(data.keywords).toLowerCase(), data.mapping);
4848
data.result = index.readKeywordDatabase();
4949

5050
const loadedCount = data.result > 0;

0 commit comments

Comments
 (0)