diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ephraim_roster.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ephraim_roster.erl b/src/core/ephraim_roster.erl index 6360a34..9cc91f8 100644 --- a/src/core/ephraim_roster.erl +++ b/src/core/ephraim_roster.erl @@ -47,7 +47,8 @@ updateResource(Roster, JID, Priority, Type, Show, Status) -> if RosterEntry#roster_entry.subscription =:= undefined -> ok; true -> - ephraim ! {ui_update, {roster_update, BareJID, dict:to_list(Resources)}} + ephraim ! {ui_update, {roster_update, BareJID, RosterEntry#roster_entry.name, RosterEntry#roster_entry.subscription, + sets:to_list(RosterEntry#roster_entry.groups), dict:to_list(Resources)}} end, Roster#roster{entries=Entries}. |