diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-22 16:58:48 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-22 16:58:48 +0800 |
commit | 8d4d472ab00b533362d527972865a4f28f9d4986 (patch) | |
tree | bc49ba8cab7b5152b3c62db8591d81d76652c5fb | |
parent | c5220a248d7626129eadce95a606eb4157aafe71 (diff) | |
parent | 161c9a2381a9c2df45ef8df81e8b680ce41b5c64 (diff) | |
download | gsoc2013-empathy-8d4d472ab00b533362d527972865a4f28f9d4986.tar gsoc2013-empathy-8d4d472ab00b533362d527972865a4f28f9d4986.tar.gz gsoc2013-empathy-8d4d472ab00b533362d527972865a4f28f9d4986.tar.bz2 gsoc2013-empathy-8d4d472ab00b533362d527972865a4f28f9d4986.tar.lz gsoc2013-empathy-8d4d472ab00b533362d527972865a4f28f9d4986.tar.xz gsoc2013-empathy-8d4d472ab00b533362d527972865a4f28f9d4986.tar.zst gsoc2013-empathy-8d4d472ab00b533362d527972865a4f28f9d4986.zip |
Merge remote-tracking branch 'danni/blocking-645487' into gnome-2-34
-rw-r--r-- | libempathy/empathy-tp-contact-list.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c index 90932a20a..30fb4a2d5 100644 --- a/libempathy/empathy-tp-contact-list.c +++ b/libempathy/empathy-tp-contact-list.c @@ -1121,10 +1121,12 @@ tp_contact_list_add (EmpathyContactList *list, GArray handles = {(gchar *) &handle, 1}; handle = empathy_contact_get_handle (contact); + if (priv->subscribe) { tp_cli_channel_interface_group_call_add_members (priv->subscribe, -1, &handles, message, NULL, NULL, NULL, NULL); } + if (priv->publish) { TpChannelGroupFlags flags = tp_channel_group_get_flags (priv->subscribe); if (flags & TP_CHANNEL_GROUP_FLAG_CAN_ADD || @@ -1133,6 +1135,12 @@ tp_contact_list_add (EmpathyContactList *list, -1, &handles, message, NULL, NULL, NULL, NULL); } } + + if (priv->deny) { + tp_cli_channel_interface_group_call_remove_members ( + priv->deny, -1, &handles, message, + NULL, NULL, NULL, NULL); + } } static void |