sqlitesearch: escapeFtsArgument: Fix handling of '*' prefix search
The * must not be in quotes
Este commit está contenido en:
padre
46c52afe59
commit
c0f4087937
@ -78,12 +78,17 @@ QString SqliteSearch::escapeFtsArgument(QString ftsArg)
|
||||
if(value.isEmpty())
|
||||
{
|
||||
value = m.captured(2);
|
||||
if(value.endsWith('*'))
|
||||
{
|
||||
value = value.mid(0, value.size() - 1);
|
||||
}
|
||||
result += "\"" + value + "\"*";
|
||||
}
|
||||
else
|
||||
{
|
||||
value = "\"\"" + value + "\"\"";
|
||||
result += "\"" + value + "\" ";
|
||||
}
|
||||
result += "\"" + value + "\" ";
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
Cargando…
Referencia en una nueva incidencia
Block a user