Skip to content
Snippets Groups Projects
Commit c12077e4 authored by tnmy-cyngn's avatar tnmy-cyngn Committed by Luca Stefani
Browse files

Messaging app crashes after a few MMS

In some scenarios, data not bound when SIM state
change local broadcasts are received. See stacktrace
for more info. Protect against/skip call to update()
in such scenarios.

Test: m
Change-Id: Iee7775a74d22808cb262e8973ca70e5e1f0acfc9
Bug-Id: CYNGNOS-3062, KIPPER-718
parent bbda7af9
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,8 @@ public class ConversationFragment extends Fragment implements ConversationDataLi
intent.getStringExtra(UIIntents.UI_INTENT_EXTRA_CONVERSATION_SELF_ID);
Assert.notNull(conversationId);
Assert.notNull(selfId);
if (TextUtils.equals(mBinding.getData().getConversationId(), conversationId)) {
if (isBound() && TextUtils
.equals(mBinding.getData().getConversationId(), conversationId)) {
mComposeMessageView.updateConversationSelfIdOnExternalChange(selfId);
}
}
......
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