Start monitoring connectivity status when the repository is initiated.

This commit is contained in:
davidoskky 2022-10-01 22:43:48 +02:00
parent 713ceb05bf
commit ebef0b3511
2 changed files with 1 additions and 2 deletions

View File

@ -75,8 +75,6 @@ class MyApp : MultiDexApplication(), DIAware {
).show() ).show()
} }
} }
connectivityStatus.start()
} }
private fun handleNotificationChannels() { private fun handleNotificationChannels() {

View File

@ -42,6 +42,7 @@ class Repository(private val api: SelfossApi, private val appSettingsService: Ap
init { init {
// TODO: Dispatchers.IO not available in KMM, an alternative solution should be found // TODO: Dispatchers.IO not available in KMM, an alternative solution should be found
connectivityStatus.start()
runBlocking { runBlocking {
updateApiVersion() updateApiVersion()
dateUtils = DateUtils(appSettingsService) dateUtils = DateUtils(appSettingsService)