mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-21 00:13:41 +02:00
Disable new emoji loading by default
There are just too many bugs in androidx.emoji2
This commit is contained in:
@@ -177,7 +177,7 @@ public class ApplicationEx extends Application
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
final boolean crash_reports = prefs.getBoolean("crash_reports", false);
|
||||
final boolean leak_canary = prefs.getBoolean("leak_canary", BuildConfig.TEST_RELEASE);
|
||||
final boolean load_emoji = prefs.getBoolean("load_emoji", true);
|
||||
final boolean load_emoji = prefs.getBoolean("load_emoji", false);
|
||||
|
||||
prev = Thread.getDefaultUncaughtExceptionHandler();
|
||||
|
||||
|
||||
@@ -714,7 +714,7 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
|
||||
tvGenericUserAgent.setText(WebViewEx.getUserAgent(getContext()));
|
||||
swGenericUserAgent.setChecked(prefs.getBoolean("generic_ua", false));
|
||||
swSafeBrowsing.setChecked(prefs.getBoolean("safe_browsing", false));
|
||||
swLoadEmoji.setChecked(prefs.getBoolean("load_emoji", true));
|
||||
swLoadEmoji.setChecked(prefs.getBoolean("load_emoji", false));
|
||||
|
||||
long disconnect_last = prefs.getLong("disconnect_last", -1);
|
||||
tvDisconnectBlacklistTime.setText(disconnect_last < 0 ? null : DF.format(disconnect_last));
|
||||
|
||||
Reference in New Issue
Block a user