search should ignore diacritics, closes #2182

This commit is contained in:
zadam
2021-09-27 22:09:55 +02:00
parent 192a2fe9f9
commit 533fcd06e4
7 changed files with 30 additions and 15 deletions

View File

@@ -649,7 +649,7 @@ class Note extends AbstractEntity {
this.flatTextCache += ' ';
}
this.flatTextCache = this.flatTextCache.toLowerCase();
this.flatTextCache = utils.removeDiacritic(this.flatTextCache.toLowerCase());
}
return this.flatTextCache;