Commit 0e6e0dd0 authored by Tiago Cunha's avatar Tiago Cunha

Possible NPE - should lookout for the root cause later

parent 7c3b692d
......@@ -51,6 +51,9 @@ public class MessageExtraActionListAdapter
@Override
public int getItemCount() {
if (actionItems == null) {
return 0;
}
return actionItems.size();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment