mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-06 04:45:50 +01:00
Small fix
This commit is contained in:
@@ -2749,7 +2749,7 @@ class Core {
|
||||
boolean notify_reply_direct = (prefs.getBoolean("notify_reply_direct", false) && pro);
|
||||
boolean notify_flag = (prefs.getBoolean("notify_flag", false) && flags && pro);
|
||||
boolean notify_seen = (prefs.getBoolean("notify_seen", true) || !pro);
|
||||
boolean notify_snooze = (prefs.getBoolean("notify_snooze", false) || !pro);
|
||||
boolean notify_snooze = (prefs.getBoolean("notify_snooze", false) && pro);
|
||||
boolean notify_remove = prefs.getBoolean("notify_remove", true);
|
||||
boolean light = prefs.getBoolean("light", false);
|
||||
String sound = prefs.getString("sound", null);
|
||||
|
||||
@@ -400,7 +400,7 @@ public class FragmentOptionsNotifications extends FragmentBase implements Shared
|
||||
cbNotifyActionReplyDirect.setChecked(prefs.getBoolean("notify_reply_direct", false) && pro);
|
||||
cbNotifyActionFlag.setChecked(prefs.getBoolean("notify_flag", false) && pro);
|
||||
cbNotifyActionSeen.setChecked(prefs.getBoolean("notify_seen", true) || !pro);
|
||||
cbNotifyActionSnooze.setChecked(prefs.getBoolean("notify_snooze", false) || !pro);
|
||||
cbNotifyActionSnooze.setChecked(prefs.getBoolean("notify_snooze", false) && pro);
|
||||
|
||||
swBiometricsNotify.setChecked(prefs.getBoolean("biometrics_notify", false));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user