don't send sha in gc presences
This commit is contained in:
parent
79f7506ca3
commit
de2fe68d40
|
@ -1835,7 +1835,6 @@ class Connection:
|
||||||
ptype = None
|
ptype = None
|
||||||
p = common.xmpp.Presence(to = '%s@%s/%s' % (room, server, nick),
|
p = common.xmpp.Presence(to = '%s@%s/%s' % (room, server, nick),
|
||||||
show = show, status = self.status)
|
show = show, status = self.status)
|
||||||
p = self.add_sha(p)
|
|
||||||
t = p.setTag(common.xmpp.NS_MUC + ' x')
|
t = p.setTag(common.xmpp.NS_MUC + ' x')
|
||||||
if password:
|
if password:
|
||||||
t.setTagData('password', password)
|
t.setTagData('password', password)
|
||||||
|
@ -1863,7 +1862,6 @@ class Connection:
|
||||||
if not self.connection:
|
if not self.connection:
|
||||||
return
|
return
|
||||||
p = common.xmpp.Presence(to = '%s/%s' % (room_jid, nick))
|
p = common.xmpp.Presence(to = '%s/%s' % (room_jid, nick))
|
||||||
p = self.add_sha(p)
|
|
||||||
self.to_be_sent.append(p)
|
self.to_be_sent.append(p)
|
||||||
|
|
||||||
def send_gc_status(self, nick, jid, show, status):
|
def send_gc_status(self, nick, jid, show, status):
|
||||||
|
@ -1875,7 +1873,6 @@ class Connection:
|
||||||
show = helpers.get_xmpp_show(show)
|
show = helpers.get_xmpp_show(show)
|
||||||
p = common.xmpp.Presence(to = '%s/%s' % (jid, nick), typ = ptype,
|
p = common.xmpp.Presence(to = '%s/%s' % (jid, nick), typ = ptype,
|
||||||
show = show, status = status)
|
show = show, status = status)
|
||||||
p = self.add_sha(p)
|
|
||||||
self.to_be_sent.append(p)
|
self.to_be_sent.append(p)
|
||||||
|
|
||||||
def gc_set_role(self, room_jid, nick, role, reason = ''):
|
def gc_set_role(self, room_jid, nick, role, reason = ''):
|
||||||
|
|
Loading…
Reference in New Issue