From b8b1612f010017e6132ba187fa317d27b106f976 Mon Sep 17 00:00:00 2001 From: Adam Brown Date: Mon, 17 Oct 2022 22:26:52 +0100 Subject: [PATCH] fixing login sometimes never transitioning to next state --- features/home/src/main/kotlin/app/dapk/st/home/HomeViewModel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/home/src/main/kotlin/app/dapk/st/home/HomeViewModel.kt b/features/home/src/main/kotlin/app/dapk/st/home/HomeViewModel.kt index 6de8f9a..a18e8e8 100644 --- a/features/home/src/main/kotlin/app/dapk/st/home/HomeViewModel.kt +++ b/features/home/src/main/kotlin/app/dapk/st/home/HomeViewModel.kt @@ -122,6 +122,6 @@ class HomeViewModel( } fun stop() { - viewModelScope.cancel() + // do nothing } }