Changeset 3a80471
- Timestamp:
- 2007-11-24T01:13:15Z (17 years ago)
- Branches:
- master
- Children:
- 608f8cf
- Parents:
- 77bfd07
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/presence.c
r77bfd07 r3a80471 88 88 else if( strcmp( type, "unavailable" ) == 0 ) 89 89 { 90 if( ( bud = jabber_buddy_by_jid( ic, from, GET_BUDDY_EXACT) ) == NULL )90 if( ( bud = jabber_buddy_by_jid( ic, from, 0 ) ) == NULL ) 91 91 { 92 92 if( set_getbool( &ic->irc->set, "debug" ) ) … … 101 101 } 102 102 103 jabber_buddy_remove( ic, from ); 103 if( strchr( from, '/' ) == NULL ) 104 /* Sometimes servers send a type="unavailable" from a 105 bare JID, which should mean that suddenly all 106 resources for this JID disappeared. */ 107 jabber_buddy_remove_bare( ic, from ); 108 else 109 jabber_buddy_remove( ic, from ); 104 110 105 111 if( is_chat )
Note: See TracChangeset
for help on using the changeset viewer.