mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Skip saving special searches
This commit is contained in:
parent
8447ae702e
commit
e94239b9fc
1 changed files with 4 additions and 1 deletions
|
@ -115,7 +115,10 @@ public class SearchViewEx extends SearchView {
|
|||
intf.onSave(query);
|
||||
menuSearch.collapseActionView();
|
||||
intf.onSearch(query);
|
||||
prefs.edit().putString("last_search", query).apply();
|
||||
|
||||
String prefix = getContext().getString(R.string.title_search_special_prefix);
|
||||
if (query != null && !query.startsWith(prefix + ":"))
|
||||
prefs.edit().putString("last_search", query).apply();
|
||||
return true;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue