fixed npe when user was very quick with starting to type in startConversationactivity
This commit is contained in:
parent
ba2a102c07
commit
5182a92e58
|
@ -482,8 +482,10 @@ public class StartConversationActivity extends XmppActivity {
|
|||
}
|
||||
|
||||
protected void filter(String needle) {
|
||||
this.filterContacts(needle);
|
||||
this.filterConferences(needle);
|
||||
if (xmppConnectionServiceBound) {
|
||||
this.filterContacts(needle);
|
||||
this.filterConferences(needle);
|
||||
}
|
||||
}
|
||||
|
||||
protected void filterContacts(String needle) {
|
||||
|
|
Loading…
Reference in a new issue