Rename method

This commit is contained in:
topjohnwu
2020-08-28 04:50:46 -07:00
parent 01efe7a4ea
commit 6bd4006652
7 changed files with 10 additions and 8 deletions
@@ -78,8 +78,10 @@ class InstallViewModel(
step = nextStep
}
fun install() =
DownloadService(get(), Subject.Magisk(resolveAction())).also { state = State.LOADING }
fun install() {
DownloadService.start(get(), Subject.Magisk(resolveAction()))
state = State.LOADING
}
// ---