mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 16:16:33 +02:00
Fixed "badge" settings update
This commit is contained in:
@@ -331,6 +331,7 @@ public class FragmentOptionsNotifications extends FragmentBase implements Shared
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
prefs.edit().putBoolean("badge", checked).apply();
|
||||
ServiceSynchronize.restart(compoundButton.getContext());
|
||||
}
|
||||
});
|
||||
|
||||
@@ -338,6 +339,7 @@ public class FragmentOptionsNotifications extends FragmentBase implements Shared
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
prefs.edit().putBoolean("unseen_ignored", checked).apply();
|
||||
ServiceSynchronize.restart(compoundButton.getContext());
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -145,7 +145,6 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
||||
"sync_folders",
|
||||
"sync_shared_folders",
|
||||
"prefer_ip4", "standalone_vpn", "tcp_keep_alive", "ssl_harden", // force reconnect
|
||||
"badge", "unseen_ignored", // force update badge/widget
|
||||
"experiments", "debug", "protocol", // force reconnect
|
||||
"auth_plain", "auth_login", "auth_ntlm", "auth_sasl" // force reconnect
|
||||
));
|
||||
@@ -2408,6 +2407,11 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
||||
.setAction("watchdog"));
|
||||
}
|
||||
|
||||
static void restart(Context context) {
|
||||
context.stopService(new Intent(context, ServiceSynchronize.class));
|
||||
eval(context, "restart");
|
||||
}
|
||||
|
||||
private static void start(Context context, Intent intent) {
|
||||
if (isBackgroundService(context))
|
||||
context.startService(intent);
|
||||
|
||||
Reference in New Issue
Block a user