prevent adding twice a group in a contact.groups
This commit is contained in:
parent
c5e0650c91
commit
12959a7888
1 changed files with 5 additions and 4 deletions
|
@ -104,10 +104,11 @@ class EditGroupsDialog:
|
||||||
self.changes_made = True
|
self.changes_made = True
|
||||||
model = self.list.get_model()
|
model = self.list.get_model()
|
||||||
model[path][1] = not model[path][1]
|
model[path][1] = not model[path][1]
|
||||||
if model[path][1]:
|
jid = model[path][0].decode('utf-8')
|
||||||
self.user.groups.append(model[path][0].decode('utf-8'))
|
if model[path][1] and not jid in self.user.groups:
|
||||||
else:
|
self.user.groups.append(jid)
|
||||||
self.user.groups.remove(model[path][0].decode('utf-8'))
|
elif jid in self.user.groups:
|
||||||
|
self.user.groups.remove(jid)
|
||||||
self.update_contact()
|
self.update_contact()
|
||||||
|
|
||||||
def init_list(self):
|
def init_list(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue