We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a46a30 commit a22dcefCopy full SHA for a22dcef
app/src/main/java/com/github/capntrips/kernelflasher/ui/screens/slot/SlotViewModel.kt
@@ -442,7 +442,7 @@ class SlotViewModel(
442
private fun resetSlot() {
443
val activeSlotSuffix = Shell.cmd("getprop ro.boot.slot_suffix").exec().out[0]
444
val newSlot = if (activeSlotSuffix == "_a") "_b" else "_a"
445
- Shell.cmd("magisk resetprop -n ro.boot.slot_suffix $newSlot").exec()
+ Shell.cmd("resetprop -n ro.boot.slot_suffix $newSlot").exec()
446
wasSlotReset = !wasSlotReset
447
}
448
0 commit comments