Always try UTF8 search

This commit is contained in:
M66B 2021-06-04 18:12:02 +02:00
parent 3c1f44f1b1
commit 312917dc18
1 changed files with 5 additions and 6 deletions

View File

@ -449,12 +449,11 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
" folder=" + folder + " folder=" + folder +
" search=" + criteria); " search=" + criteria);
if (protocol.supportsUtf8()) try {
try { return search(true, browsable.keywords, protocol, state);
return search(true, browsable.keywords, protocol, state); } catch (Throwable ex) {
} catch (Throwable ex) { EntityLog.log(context, ex.toString());
EntityLog.log(context, ex.toString()); }
}
return search(false, browsable.keywords, protocol, state); return search(false, browsable.keywords, protocol, state);
} }