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) {
|
protected void filter(String needle) {
|
||||||
this.filterContacts(needle);
|
if (xmppConnectionServiceBound) {
|
||||||
this.filterConferences(needle);
|
this.filterContacts(needle);
|
||||||
|
this.filterConferences(needle);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void filterContacts(String needle) {
|
protected void filterContacts(String needle) {
|
||||||
|
|
Loading…
Reference in a new issue