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 9d9b940 commit df8b357Copy full SHA for df8b357
app/src/main/java/com/github/capntrips/kernelflasher/ui/screens/slot/SlotViewModel.kt
@@ -431,7 +431,7 @@ class SlotViewModel(
431
private fun resetSlot() {
432
val activeSlotSuffix = Shell.cmd("getprop ro.boot.slot_suffix").exec().out[0]
433
val newSlot = if (activeSlotSuffix == "_a") "_b" else "_a"
434
- Shell.cmd("magisk resetprop -n ro.boot.slot_suffix $newSlot").exec()
+ Shell.cmd("resetprop -n ro.boot.slot_suffix $newSlot").exec()
435
wasSlotReset = !wasSlotReset
436
}
437
0 commit comments