You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
All: Better handle search queries that include dashes
This commit is contained in:
@ -355,6 +355,7 @@ class SearchEngine {
|
||||
|
||||
async search(query) {
|
||||
query = this.normalizeText_(query);
|
||||
query = query.replace(/-/g, ' '); // https://github.com/laurent22/joplin/issues/1075#issuecomment-459258856
|
||||
|
||||
const st = scriptType(query);
|
||||
|
||||
|
Reference in New Issue
Block a user