Fixed "badge" settings update

This commit is contained in:
M66B
2021-02-24 15:58:53 +01:00
parent 60b33adb22
commit 1a93794892
2 changed files with 7 additions and 1 deletions

View File

@@ -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());
}
});