Changeset 6354 for branches/gajim_0.10/src/roster_window.py
- Timestamp:
- 05/24/06 20:17:51 (3 years ago)
- Files:
-
- 1 modified
-
branches/gajim_0.10/src/roster_window.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.10/src/roster_window.py
r6261 r6354 242 242 family = gajim.contacts.get_metacontacts_family(account, jid) 243 243 244 shown_family = [] # family members that are in roster. 244 # family members that are in roster and belong to the same account. 245 shown_family = [] 245 246 if family: 246 247 for data in family: 248 _account = data['account'] 249 if _account != account: 250 continue 247 251 _jid = data['jid'] 248 _account = data['account']252 249 253 if self.get_contact_iter(_jid, _account): 250 254 shown_family.append(data)
