Skip to content
Snippets Groups Projects
Commit 332d88b4 authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Fix UninitializedPropertyAccessException

parent 82d7d7d6
No related branches found
No related tags found
1 merge request!208Fixes
......@@ -138,7 +138,7 @@ class DebugLogActivity : FragmentActivity(), DebugLogService.Client.Callback {
override fun onLog(msg: String) {
logList.add(msg)
logAdapter.notifyDataSetChanged()
if (::logAdapter.isInitialized) logAdapter.notifyDataSetChanged()
setOptionsButtonsEnabled(true)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment