mirror of https://github.com/M66B/FairEmail.git
Made account notifications pro
This commit is contained in:
parent
497ec0a7a9
commit
c1386a42be
|
@ -391,6 +391,20 @@ public class FragmentAccount extends FragmentEx {
|
|||
}
|
||||
});
|
||||
|
||||
cbNotify.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||
if (isChecked && !Helper.isPro(getContext())) {
|
||||
cbNotify.setChecked(false);
|
||||
|
||||
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
|
||||
fragmentTransaction.hide(FragmentAccount.this);
|
||||
fragmentTransaction.add(R.id.content_frame, new FragmentPro()).addToBackStack("pro");
|
||||
fragmentTransaction.commit();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
cbSynchronize.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
|
@ -726,6 +740,11 @@ public class FragmentAccount extends FragmentEx {
|
|||
if (account.primary)
|
||||
db.account().resetPrimary();
|
||||
|
||||
if (!Helper.isPro(context)) {
|
||||
account.color = null;
|
||||
account.notify = false;
|
||||
}
|
||||
|
||||
if (update)
|
||||
db.account().updateAccount(account);
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue