You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-06 09:19:22 +02:00
All: Search: Integration to CLI and mobile apps
This commit is contained in:
@@ -328,7 +328,8 @@ class SearchEngine {
|
||||
}
|
||||
|
||||
normalizeText_(text) {
|
||||
return removeDiacritics(text.normalize().toLowerCase());
|
||||
const normalizedText = text.normalize ? text.normalize() : text;
|
||||
return removeDiacritics(normalizedText.toLowerCase());
|
||||
}
|
||||
|
||||
normalizeNote_(note) {
|
||||
|
||||
Reference in New Issue
Block a user