Fix " Dino does not add own account to roster" (#696)

should close #696

(cherry picked from commit 75c76e33bde1238a474eee7ac09acd3036bcbdd6)
This commit is contained in:
Miquel Lionel 2023-12-06 02:32:08 +01:00 committed by Maxim Logaev
parent e6b8ff34ed
commit 2f7f7c37c8

View file

@ -34,7 +34,13 @@ protected class RosterList {
foreach (ulong handler_id in handler_ids) stream_interactor.get_module(RosterManager.IDENTITY).disconnect(handler_id);
});
foreach (Account a in accounts) fetch_roster_items(a);
foreach (Account a in accounts){
ListRow own_account_row = new ListRow.from_jid(stream_interactor, a.bare_jid, a, accounts.size > 1);
ListBoxRow own_account_lbrow = new ListBoxRow() { child=own_account_row };
list_box.append(own_account_lbrow);
fetch_roster_items(a);
}
}
private void on_removed_roster_item(Account account, Jid jid, Roster.Item roster_item) {