diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-05 01:35:17 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-05 01:35:17 +0100 |
commit | 7e83e8e47ff1ba031928e1e46bf16ec53ca53117 (patch) | |
tree | 5dfc12faaba5f53f254154de4f49aeb8c71275b3 /protocols/nogaim.c | |
parent | 2b8473c72b730085c8d6aef3df8fef55c7002080 (diff) |
Inform the UI about group changes. This is important if the user has
group channels.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r-- | protocols/nogaim.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index 00fe0ebf..df97393d 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -378,6 +378,9 @@ void imcb_add_buddy( struct im_connection *ic, const char *handle, const char *g bu = bee_user_new( bee, ic, handle, 0 ); bu->group = bee_group_by_name( bee, group, TRUE ); + + if( bee->ui->user_group ) + bee->ui->user_group( bee, bu ); } void imcb_rename_buddy( struct im_connection *ic, const char *handle, const char *fullname ) |