avoid weird npe. fixed #991
This commit is contained in:
parent
a8ec36cda8
commit
da2bc6db23
|
@ -321,7 +321,9 @@ public class ConversationFragment extends Fragment {
|
|||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
activity.hideConversationsOverview();
|
||||
if (activity != null) {
|
||||
activity.hideConversationsOverview();
|
||||
}
|
||||
}
|
||||
});
|
||||
mEditMessage.setOnEditorActionListener(mEditorActionListener);
|
||||
|
|
Loading…
Reference in a new issue