typo, now list_contacts without additional
argument [account] returns a valid result
This commit is contained in:
parent
f08ea56cc9
commit
2e7a00cd38
|
@ -348,9 +348,9 @@ class SignalObject(DbusPrototype):
|
||||||
accounts_to_search = accounts
|
accounts_to_search = accounts
|
||||||
for account in accounts_to_search:
|
for account in accounts_to_search:
|
||||||
if account in accounts:
|
if account in accounts:
|
||||||
for jid in gajim.contacts.get_jid_list(for_account):
|
for jid in gajim.contacts.get_jid_list(account):
|
||||||
item = self._serialized_contacts(gajim.contacts.get_contact(
|
item = self._serialized_contacts(gajim.contacts.get_contact(
|
||||||
for_account, jid))
|
account, jid))
|
||||||
if item:
|
if item:
|
||||||
result.append(item)
|
result.append(item)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue