diff options
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-roster-view.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-roster-view.c b/libempathy-gtk/empathy-roster-view.c index bd62aadf6..8c2c277b6 100644 --- a/libempathy-gtk/empathy-roster-view.c +++ b/libempathy-gtk/empathy-roster-view.c @@ -591,7 +591,8 @@ contact_in_top (EmpathyRosterView *self, groups = empathy_roster_model_get_groups_for_individual ( self->priv->model, individual); - if (g_list_find (groups, EMPATHY_ROSTER_MODEL_GROUP_TOP_GROUP) != NULL) + if (g_list_find_custom (groups, EMPATHY_ROSTER_MODEL_GROUP_TOP_GROUP, + (GCompareFunc) g_strcmp0) != NULL) result = TRUE; g_list_free (groups); |