correctly escape jids in caps

This commit is contained in:
Yann Leboulanger 2008-06-27 15:19:00 +00:00
parent db09ad11d7
commit 7b5a692c3c
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ class ConnectionCaps(object):
# for disco... so that disco will learn how to interpret
# these caps
jid=str(presence.getFrom())
jid = helpers.get_full_jid_from_iq(presence)
# start disco query...
gajim.capscache.preload(self, jid, node, hash_method, hash)