Stored/use local contacts for sent messages by default

This commit is contained in:
M66B
2019-11-08 19:42:35 +01:00
parent c253b420d2
commit 8af1582035
4 changed files with 4 additions and 4 deletions

View File

@@ -584,7 +584,7 @@ public class FragmentCompose extends FragmentBase {
});
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
boolean suggest_sent = prefs.getBoolean("suggest_sent", false);
boolean suggest_sent = prefs.getBoolean("suggest_sent", true);
boolean suggest_received = prefs.getBoolean("suggest_received", false);
cadapter.setFilterQueryProvider(new FilterQueryProvider() {