fix: bug starting app while no connectivity

This commit is contained in:
Zane Schepke 2024-12-18 20:26:44 -05:00
parent 7285af5c2d
commit 94bd23f2a4
1 changed files with 3 additions and 1 deletions

View File

@ -81,7 +81,9 @@ constructor(
viewModelScope.launch {
initPin()
initServices()
initTunnel()
launch {
initTunnel()
}
appReadyCheck()
}
}