Fix a crash with older Nc versions

Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
Mario Danic 2019-01-24 12:12:48 +01:00
parent 7c275ccfbf
commit 7930c97dee

View file

@ -291,7 +291,14 @@ public class ContactsController extends BaseController implements SearchView.OnQ
} else {
conversationIntent.putExtras(bundle);
startActivity(conversationIntent);
new Handler().postDelayed(() -> getRouter().popCurrentController(), 100);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
if (!isDestroyed() && !isBeingDestroyed()) {
getRouter().popCurrentController();
}
}
}, 100);
}
}