correctly escape jids in caps
This commit is contained in:
parent
db09ad11d7
commit
7b5a692c3c
|
@ -201,7 +201,7 @@ class ConnectionCaps(object):
|
||||||
# for disco... so that disco will learn how to interpret
|
# for disco... so that disco will learn how to interpret
|
||||||
# these caps
|
# these caps
|
||||||
|
|
||||||
jid=str(presence.getFrom())
|
jid = helpers.get_full_jid_from_iq(presence)
|
||||||
|
|
||||||
# start disco query...
|
# start disco query...
|
||||||
gajim.capscache.preload(self, jid, node, hash_method, hash)
|
gajim.capscache.preload(self, jid, node, hash_method, hash)
|
||||||
|
|
Loading…
Reference in New Issue