diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-09 19:05:55 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-09 19:05:55 +0100 |
commit | 7aadd714313ba3e966720e7565f72118b97bd551 (patch) | |
tree | e9ae885742564d381504b0c05f5f8a702b53ac56 /protocols/nogaim.c | |
parent | 9ac3ed11de72046c318398481603c6680af37cf2 (diff) |
Keep track of contact groups in a slightly more efficient way.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r-- | protocols/nogaim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index 149e64f1..5696a01e 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -388,7 +388,7 @@ void imcb_add_buddy( struct im_connection *ic, const char *handle, const char *g } bu = bee_user_new( bee, ic, handle ); - bu->group = g_strdup( group ); + bu->group = bee_group_by_name( bee, group, TRUE ); } void imcb_rename_buddy( struct im_connection *ic, const char *handle, const char *fullname ) |