Fix possible crash

This commit is contained in:
iKirby 2024-11-26 22:30:10 +08:00
parent ea460ea5d1
commit 77d3e361cd

View file

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