Don't print "new_nick has joined the room" after "old_nick is now known as new_nick". Add new_nick to roster

when we receive /nick stanza.
This commit is contained in:
Jean-Marie Traissard 2006-05-17 17:56:33 +00:00
parent b82a36083e
commit 7cd0b8d603
1 changed files with 6 additions and 0 deletions

View File

@ -801,6 +801,12 @@ class GroupchatControl(ChatControlBase):
s = _('You are now known as %s') % new_nick s = _('You are now known as %s') % new_nick
else: else:
s = _('%s is now known as %s') % (nick, new_nick) s = _('%s is now known as %s') % (nick, new_nick)
# We add new nick to muc roster here, so we don't see
# that "new_nick has joined the room" when he just changed nick.
# add_contact_to_roster will be called a second time
# after that, but that doesn't hurt
self.add_contact_to_roster(new_nick, show, role, affiliation,
status, jid)
self.print_conversation(s, 'info') self.print_conversation(s, 'info')
if not gajim.awaiting_events[self.account].has_key(self.room_jid + '/' + nick): if not gajim.awaiting_events[self.account].has_key(self.room_jid + '/' + nick):