Merge pull request #180 from jay-instaedu/develop

dereference iq stanza only once for roster processing
This commit is contained in:
Lance Stout 2012-07-06 13:58:46 -07:00
commit 1efe049959

View file

@ -270,8 +270,9 @@ class ClientXMPP(BaseXMPP):
roster = self.client_roster
if iq['roster']['ver']:
roster.version = iq['roster']['ver']
for jid in iq['roster']['items']:
item = iq['roster']['items'][jid]
items = iq['roster']['items']
for jid in items:
item = items[jid]
roster[jid]['name'] = item['name']
roster[jid]['groups'] = item['groups']
roster[jid]['from'] = item['subscription'] in ['from', 'both']