mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix(installer): save step incorrectly being marked as completed
This commit is contained in:
parent
149c8cc8b2
commit
18cbe51e6b
@ -75,12 +75,15 @@ class PatcherProgressManager(context: Context, selectedPatches: List<String>) {
|
||||
steps[stepKeyMap[Progress.PatchingStart]!!.step] = generatePatchesStep(newList)
|
||||
}
|
||||
|
||||
private fun updateCurrent(newState: State, message: String? = null) =
|
||||
private fun updateCurrent(newState: State, message: String? = null) {
|
||||
currentStep?.let { update(it, newState, message) }
|
||||
}
|
||||
|
||||
|
||||
fun handle(progress: Progress) = success().also {
|
||||
stepKeyMap[progress]?.let { currentStep = it }
|
||||
fun handle(progress: Progress) = when (val step = stepKeyMap[progress]) {
|
||||
null -> success()
|
||||
currentStep -> {}
|
||||
else -> success().also { currentStep = step }
|
||||
}
|
||||
|
||||
fun failure(error: Throwable) = updateCurrent(
|
||||
|
Loading…
Reference in New Issue
Block a user