Update BehaviourContextWithFSM.kt

This commit is contained in:
InsanusMokrassar 2022-12-28 22:59:10 +06:00
parent 692b668f92
commit dbe2607994
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ class DefaultBehaviourContextWithFSM<T : State>(
statesJobsMutex.withLock {
runCatchingSafely { statesJobs.remove(old) ?.cancel() }
runCatchingSafely { statesJobs.remove(new) ?.cancel() }
statesJobs[new] = launch { statePerformer(new) }.apply { enableRemoveOnCompletion(it) }
statesJobs[new] = launch { statePerformer(new) }.apply { enableRemoveOnCompletion(new) }
}
if (old.context != new.context) {
updatesFlows.remove(old.context)