don't send sha in gc presences

This commit is contained in:
Yann Leboulanger 2005-09-14 16:19:42 +00:00
parent 79f7506ca3
commit de2fe68d40
1 changed files with 0 additions and 3 deletions

View File

@ -1835,7 +1835,6 @@ class Connection:
ptype = None
p = common.xmpp.Presence(to = '%s@%s/%s' % (room, server, nick),
show = show, status = self.status)
p = self.add_sha(p)
t = p.setTag(common.xmpp.NS_MUC + ' x')
if password:
t.setTagData('password', password)
@ -1863,7 +1862,6 @@ class Connection:
if not self.connection:
return
p = common.xmpp.Presence(to = '%s/%s' % (room_jid, nick))
p = self.add_sha(p)
self.to_be_sent.append(p)
def send_gc_status(self, nick, jid, show, status):
@ -1875,7 +1873,6 @@ class Connection:
show = helpers.get_xmpp_show(show)
p = common.xmpp.Presence(to = '%s/%s' % (jid, nick), typ = ptype,
show = show, status = status)
p = self.add_sha(p)
self.to_be_sent.append(p)
def gc_set_role(self, room_jid, nick, role, reason = ''):