# HG changeset patch # User Elliott Sales de Andrade # Date 1234069350 0 # Node ID d7dcdba13b8867b5c72f91b3fe5ddec8f40d05d1 # Parent 2035b8164acad2180265ed6bbf193364c065cc02 A JID can have no node (the part before the @), but a chat must have one, so don't look for chats if the JID has no node. Fixes #8375. diff -r 2035b8164aca -r d7dcdba13b88 libpurple/protocols/jabber/buddy.c --- a/libpurple/protocols/jabber/buddy.c Sun Feb 08 00:23:43 2009 +0000 +++ b/libpurple/protocols/jabber/buddy.c Sun Feb 08 05:02:30 2009 +0000 @@ -1786,7 +1786,7 @@ if (!jid) return; - if (jabber_chat_find(js, jid->node, jid->domain)) { + if (jid->node && jabber_chat_find(js, jid->node, jid->domain)) { /* For a conversation, include the resource (indicates the user). */ jabber_buddy_get_info_for_jid(js, who); } else {