Fix trackers after MAL not updating

This commit is contained in:
arkon 2020-12-21 17:31:31 -05:00
parent 2fd5a9e883
commit d363d205c3

View File

@ -126,5 +126,6 @@ class MyAnimeList(private val context: Context, id: Int) : TrackService(id) {
return Observable.fromCallable { runBlocking(Dispatchers.IO) { block() } }
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.map { it }
}
}