mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Fix trackers after MAL not updating
This commit is contained in:
parent
2fd5a9e883
commit
d363d205c3
1 changed files with 1 additions and 0 deletions
|
@ -126,5 +126,6 @@ class MyAnimeList(private val context: Context, id: Int) : TrackService(id) {
|
||||||
return Observable.fromCallable { runBlocking(Dispatchers.IO) { block() } }
|
return Observable.fromCallable { runBlocking(Dispatchers.IO) { block() } }
|
||||||
.subscribeOn(Schedulers.io())
|
.subscribeOn(Schedulers.io())
|
||||||
.observeOn(AndroidSchedulers.mainThread())
|
.observeOn(AndroidSchedulers.mainThread())
|
||||||
|
.map { it }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue