Changeset 8950
- Timestamp:
- 11/08/07 21:55:18 (13 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.2/src/roster_window.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.2/src/roster_window.py
r8922 r8950 264 264 return 265 265 if jid == gajim.get_jid_from_account(account): 266 self.add_self_contact(account) 266 if contact.resource != gajim.connections[account].server_resource: 267 self.add_self_contact(account) 267 268 return 268 269 if gajim.jid_is_transport(contact.jid): … … 1354 1355 # ...get the contact info for our other online resources 1355 1356 for resource in resources: 1357 # Check if we already have this resource 1358 found = False 1359 for contact_ in contacts: 1360 if contact_.resource == resource: 1361 found = True 1362 break 1363 if found: 1364 continue 1356 1365 show = roster.getShow(jid+'/'+resource) 1357 1366 if not show:
