Adjust Wi-Fi connection check (related to #6038)

This commit is contained in:
arkon
2021-10-04 17:06:24 -04:00
parent f5b591430c
commit e863e8c64b
2 changed files with 9 additions and 8 deletions

View File

@@ -29,6 +29,7 @@ import kotlinx.coroutines.flow.launchIn
import kotlinx.coroutines.flow.onEach
import ru.beryukhov.reactivenetwork.ReactiveNetwork
import rx.subscriptions.CompositeSubscription
import timber.log.Timber
import uy.kohesive.injekt.injectLazy
/**
@@ -140,8 +141,9 @@ class DownloadService : Service() {
onNetworkStateChanged()
}
}
.catch {
.catch { error ->
withUIContext {
Timber.e(error)
toast(R.string.download_queue_error)
stopSelf()
}