Commit 9a114127 authored by vvb2060's avatar vvb2060 Committed by John Wu

Fix superuser snackbar text

parent 98874be1
...@@ -115,8 +115,8 @@ class SuperuserViewModel( ...@@ -115,8 +115,8 @@ class SuperuserViewModel(
viewModelScope.launch { viewModelScope.launch {
db.update(item.item) db.update(item.item)
val res = when { val res = when {
item.item.logging -> R.string.su_snack_log_on item.item.notification -> R.string.su_snack_notif_on
else -> R.string.su_snack_log_off else -> R.string.su_snack_notif_off
} }
itemsPolicies.forEach { itemsPolicies.forEach {
if (it.item.uid == item.item.uid) { if (it.item.uid == item.item.uid) {
...@@ -131,8 +131,8 @@ class SuperuserViewModel( ...@@ -131,8 +131,8 @@ class SuperuserViewModel(
viewModelScope.launch { viewModelScope.launch {
db.update(item.item) db.update(item.item)
val res = when { val res = when {
item.item.notification -> R.string.su_snack_notif_on item.item.logging -> R.string.su_snack_log_on
else -> R.string.su_snack_notif_off else -> R.string.su_snack_log_off
} }
itemsPolicies.forEach { itemsPolicies.forEach {
if (it.item.uid == item.item.uid) { if (it.item.uid == item.item.uid) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment