get_full_jid_from_iq is in helpers. Fixes #5146
This commit is contained in:
parent
c54194d844
commit
676bda8281
|
@ -1778,7 +1778,7 @@ class ConnectionHandlers(ConnectionVcard, ConnectionBytestream, ConnectionDisco,
|
||||||
def _rosterItemExchangeCB(self, con, msg):
|
def _rosterItemExchangeCB(self, con, msg):
|
||||||
''' XEP-0144 Roster Item Echange '''
|
''' XEP-0144 Roster Item Echange '''
|
||||||
exchange_items_list = {}
|
exchange_items_list = {}
|
||||||
jid_from = gajim.get_full_jid_from_iq(msg)
|
jid_from = helpers.get_full_jid_from_iq(msg)
|
||||||
items_list = msg.getTag('x').getChildren()
|
items_list = msg.getTag('x').getChildren()
|
||||||
action = items_list[0].getAttr('action')
|
action = items_list[0].getAttr('action')
|
||||||
if action == None:
|
if action == None:
|
||||||
|
|
Loading…
Reference in New Issue