Fix last sync date to save only successful sync (#1595)

This commit is contained in:
Rafał Borcz 2021-10-21 10:47:37 +02:00 committed by GitHub
parent 58ea2c530e
commit 09a134d442
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 37 additions and 38 deletions

View file

@ -1,11 +1,9 @@
package io.github.wulkanowy
import io.github.wulkanowy.utils.DispatchersProvider
import kotlinx.coroutines.CoroutineDispatcher
import kotlinx.coroutines.Dispatchers
class TestDispatchersProvider : DispatchersProvider() {
override val backgroundThread: CoroutineDispatcher
get() = Dispatchers.Unconfined
override val io get() = Dispatchers.Unconfined
}