修复:转发通话记录开关状态保存失效

This commit is contained in:
pppscn 2022-02-02 20:38:37 +08:00
parent a222b8b27a
commit e9bb3aa627
1 changed files with 2 additions and 2 deletions

View File

@ -216,7 +216,7 @@ public class SettingActivity extends AppCompatActivity {
} else { } else {
ToastUtils.show(R.string.toast_granted_part); ToastUtils.show(R.string.toast_granted_part);
} }
SettingUtil.switchEnableSms(true); SettingUtil.switchEnablePhone(true);
} }
@Override @Override
@ -228,7 +228,7 @@ public class SettingActivity extends AppCompatActivity {
} else { } else {
ToastUtils.show(R.string.toast_denied); ToastUtils.show(R.string.toast_denied);
} }
SettingUtil.switchEnableSms(false); SettingUtil.switchEnablePhone(false);
} }
}); });
} else { } else {