1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00

Mobile: Fixes #9159: Fix fast search (#9191)

This commit is contained in:
Henry Heino 2023-11-02 02:50:38 -07:00 committed by GitHub
parent c7c86c2b52
commit 09b52237f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,7 @@ class SearchScreenComponent extends BaseScreenComponent {
if (query) {
if (this.props.settings['db.ftsEnabled']) {
notes = await SearchEngineUtils.notesForQuery(query, true);
notes = await SearchEngineUtils.notesForQuery(query, true, { appendWildCards: true });
} else {
const p = query.split(' ');
const temp = [];