Skip to content
Snippets Groups Projects
Commit 2995ccdf authored by Anon's avatar Anon
Browse files

MainFragment: Fix NPE.

parent df2f98ea
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,11 @@ class MainFragment : Fragment(), GattListener {
}
private fun showConnectedView() {
// The callback can happen when our UI is not visible
if (container_connected == null) {
return
}
activity?.runOnUiThread {
container_connected.visibility = View.VISIBLE
container_disconnected.visibility = View.GONE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment