diff --git a/app/src/main/java/eu/faircode/email/Core.java b/app/src/main/java/eu/faircode/email/Core.java index 9ede63b3b1..1ecfb7eb36 100644 --- a/app/src/main/java/eu/faircode/email/Core.java +++ b/app/src/main/java/eu/faircode/email/Core.java @@ -2611,7 +2611,7 @@ class Core { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); boolean notify_summary = prefs.getBoolean("notify_summary", false); - boolean wearable_preview = prefs.getBoolean("wearable_preview", false); + boolean wearable_preview = prefs.getBoolean("wearable_preview", true); boolean biometrics = prefs.getBoolean("biometrics", false); boolean biometric_notify = prefs.getBoolean("biometrics_notify", false); boolean pro = ActivityBilling.isPro(context); @@ -2759,7 +2759,7 @@ class Core { boolean name_email = prefs.getBoolean("name_email", false); boolean flags = prefs.getBoolean("flags", true); boolean notify_preview = prefs.getBoolean("notify_preview", true); - boolean wearable_preview = prefs.getBoolean("wearable_preview", false); + boolean wearable_preview = prefs.getBoolean("wearable_preview", true); boolean notify_trash = (prefs.getBoolean("notify_trash", true) || !pro); boolean notify_junk = (prefs.getBoolean("notify_junk", false) && pro); boolean notify_archive = (prefs.getBoolean("notify_archive", true) || !pro); diff --git a/app/src/main/java/eu/faircode/email/FragmentOptionsNotifications.java b/app/src/main/java/eu/faircode/email/FragmentOptionsNotifications.java index b2d1647d95..9949179441 100644 --- a/app/src/main/java/eu/faircode/email/FragmentOptionsNotifications.java +++ b/app/src/main/java/eu/faircode/email/FragmentOptionsNotifications.java @@ -353,7 +353,7 @@ public class FragmentOptionsNotifications extends FragmentBase implements Shared swUnseenIgnored.setChecked(prefs.getBoolean("unseen_ignored", false)); swNotifySummary.setChecked(prefs.getBoolean("notify_summary", false)); swNotifyPreview.setChecked(prefs.getBoolean("notify_preview", true)); - swWearablePreview.setChecked(prefs.getBoolean("wearable_preview", false)); + swWearablePreview.setChecked(prefs.getBoolean("wearable_preview", true)); swWearablePreview.setEnabled(swNotifyPreview.isChecked()); cbNotifyActionTrash.setChecked(prefs.getBoolean("notify_trash", true) || !pro);