Skip to content
Snippets Groups Projects
Commit 6e30019a authored by Adrien Béraud's avatar Adrien Béraud
Browse files

smartlist: prevent crash in startConversation

Change-Id: I5e1e6da2edc1bff600fe139e8e0fad4efc4b97ef
parent 6e50afe4
No related branches found
No related tags found
No related merge requests found
......@@ -225,8 +225,11 @@ public class SmartListPresenter extends RootPresenter<SmartListView> {
getView().displayMenuItem();
}
public void startConversation(String accountId, CallContact c) {
getView().goToConversation(accountId, c.getPrimaryUri());
private void startConversation(String accountId, CallContact c) {
SmartListView view = getView();
if (view != null && c != null) {
view.goToConversation(accountId, c.getPrimaryUri());
}
}
public void startConversation(Uri uri) {
......
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