improvements on findConversation

This commit is contained in:
iNPUTmice 2014-10-28 17:15:35 +01:00
parent 161623eca2
commit f256a466d8
1 changed files with 2 additions and 2 deletions

View File

@ -922,9 +922,9 @@ public class XmppConnectionService extends Service {
public Conversation find(List<Conversation> haystack, Account account, public Conversation find(List<Conversation> haystack, Account account,
String jid) { String jid) {
for (Conversation conversation : haystack) { for (Conversation conversation : haystack) {
if ((account == null || conversation.getAccount().equals(account)) if ((account == null || conversation.getAccount() == account)
&& (conversation.getContactJid().split("/", 2)[0] && (conversation.getContactJid().split("/", 2)[0]
.equals(jid))) { .equalsIgnoreCase(jid))) {
return conversation; return conversation;
} }
} }