From c970d707105bbb614a630a1ac7340d6044e8fee1 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Thu, 27 Dec 2018 16:54:11 -0500 Subject: Fix initial crash --- .../pitchedapps/frost/fragments/RecyclerFragmentBase.kt | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'app/src/main/kotlin/com/pitchedapps/frost/fragments/RecyclerFragmentBase.kt') diff --git a/app/src/main/kotlin/com/pitchedapps/frost/fragments/RecyclerFragmentBase.kt b/app/src/main/kotlin/com/pitchedapps/frost/fragments/RecyclerFragmentBase.kt index 98c8f750..ddb9fde6 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/fragments/RecyclerFragmentBase.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/fragments/RecyclerFragmentBase.kt @@ -30,6 +30,7 @@ import com.pitchedapps.frost.utils.L import com.pitchedapps.frost.utils.frostJsoup import com.pitchedapps.frost.views.FrostRecyclerView import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.isActive import kotlinx.coroutines.withContext /** @@ -55,14 +56,17 @@ abstract class RecyclerFragment> : BaseFragment(), Recycle } catch (e: Exception) { null } - if (data == null) { - valid = false + if (!isActive) return false + return withContext(Dispatchers.Main) { + if (data == null) { + valid = false + return@withContext false + } else { + adapter.setNewList(data) + return@withContext true + } } - withContext(Dispatchers.Main) { - adapter.setNewList(data) - } - return true } protected abstract suspend fun reloadImpl(progress: (Int) -> Unit): List? -- cgit v1.2.3