Fix IO thread performing UI task on some occasion (#59).

This commit is contained in:
Antoine POPINEAU 2020-07-09 10:45:52 +02:00
parent 5d397ab1fe
commit 4b2cf10e78
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
1 changed files with 3 additions and 1 deletions

View File

@ -101,7 +101,9 @@ abstract class FunkwhaleFragment<D : Any, A : FunkwhaleAdapter<D, *>> : Fragment
var first = size == 0
if (!moreLoading && upstreams == Repository.Origin.Network.origin) {
swiper?.isRefreshing = true
lifecycleScope.launch(Main) {
swiper?.isRefreshing = true
}
}
repository.fetch(upstreams, size).untilNetwork(lifecycleScope, IO) { data, isCache, page, hasMore ->