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 f64e775 commit a76e596Copy full SHA for a76e596
app/src/main/java/com/github/capntrips/kernelflasher/ui/screens/slot/SlotViewModel.kt
@@ -71,7 +71,7 @@ class SlotViewModel(
71
val flashOutput: List<String>
72
get() = _flashOutput
73
val uiPrintedOutput: List<String>
74
- get() = _flashOutput.filter { it.startsWith("ui_print") }.map { it.substringAfter("ui_print").trim() }.filter { it.isNotEmpty() || it == "" }
+ get() = _flashOutput.filter { it.startsWith("ui_print") }.map { it.substringAfter("ui_print").trim() }.filter { it.isNotEmpty() }
75
val wasFlashSuccess: Boolean?
76
get() = _wasFlashSuccess.value
77
val backupPartitions: MutableMap<String, Boolean>
0 commit comments