Skip to content

Commit a76e596

Browse files
Enable Both slot Flash options (Add Inactive slot flash warning) : Try 13
1 parent f64e775 commit a76e596

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/java/com/github/capntrips/kernelflasher/ui/screens/slot

1 file changed

+1
-1
lines changed

app/src/main/java/com/github/capntrips/kernelflasher/ui/screens/slot/SlotViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class SlotViewModel(
7171
val flashOutput: List<String>
7272
get() = _flashOutput
7373
val uiPrintedOutput: List<String>
74-
get() = _flashOutput.filter { it.startsWith("ui_print") }.map { it.substringAfter("ui_print").trim() }.filter { it.isNotEmpty() || it == "" }
74+
get() = _flashOutput.filter { it.startsWith("ui_print") }.map { it.substringAfter("ui_print").trim() }.filter { it.isNotEmpty() }
7575
val wasFlashSuccess: Boolean?
7676
get() = _wasFlashSuccess.value
7777
val backupPartitions: MutableMap<String, Boolean>

0 commit comments

Comments
 (0)