diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libempathy/empathy-tp-contact-list.c | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2007-10-11 Xavier Claessens <xclaesse@gmail.com> + * libempathy/empathy-tp-contact-list.c: Set supress_handler to TRUE when + creating new group channel. + +2007-10-11 Xavier Claessens <xclaesse@gmail.com> + * po/POTFILES.in: Add missing files. 2007-10-09 Xavier Claessens <xclaesse@gmail.com> diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c index 5b0062f9e..ee1951916 100644 --- a/libempathy/empathy-tp-contact-list.c +++ b/libempathy/empathy-tp-contact-list.c @@ -348,7 +348,7 @@ tp_contact_list_newchannel_cb (DBusGProxy *proxy, const gchar *channel_type, TelepathyHandleType handle_type, guint channel_handle, - gboolean suppress_handle, + gboolean suppress_handler, EmpathyTpContactList *list) { EmpathyTpContactListPriv *priv = GET_PRIV (list); @@ -357,7 +357,7 @@ tp_contact_list_newchannel_cb (DBusGProxy *proxy, const gchar *bus_name; if (strcmp (channel_type, TP_IFACE_CHANNEL_TYPE_CONTACT_LIST) != 0 || - suppress_handle) { + suppress_handler) { return; } @@ -896,7 +896,7 @@ tp_contact_list_get_group (EmpathyTpContactList *list, TP_IFACE_CHANNEL_TYPE_CONTACT_LIST, TP_HANDLE_TYPE_GROUP, handle, - FALSE, + TRUE, &object_path, &error)) { empathy_debug (DEBUG_DOMAIN, |