Fix possible crash

This commit is contained in:
iKirby 2024-11-27 10:40:34 +08:00 committed by GitHub
parent c2f2b977a2
commit 75ed407a25
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -120,7 +120,9 @@ class DashboardFragment : Fragment(R.layout.fragment_dashboard) {
}
}
}.onFailure {
activity?.errorDialogBuilder(it)?.show()
withContext(Dispatchers.Main) {
activity?.errorDialogBuilder(it)?.show()
}
}
}
}