aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGuillaume Desmottes <gdesmott@gnome.org>2009-02-13 18:26:32 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-02-13 18:26:32 +0800
commitc2db0041ca88cb86a1b2e208cf5d95c22e52f4ab (patch)
tree305eec7c4f6809e4182ccf05ec51cba77bf7193a /src
parenta88f6249fe6de057d3ce7eaefa6d4c7bd6fde369 (diff)
downloadgsoc2013-empathy-c2db0041ca88cb86a1b2e208cf5d95c22e52f4ab.tar
gsoc2013-empathy-c2db0041ca88cb86a1b2e208cf5d95c22e52f4ab.tar.gz
gsoc2013-empathy-c2db0041ca88cb86a1b2e208cf5d95c22e52f4ab.tar.bz2
gsoc2013-empathy-c2db0041ca88cb86a1b2e208cf5d95c22e52f4ab.tar.lz
gsoc2013-empathy-c2db0041ca88cb86a1b2e208cf5d95c22e52f4ab.tar.xz
gsoc2013-empathy-c2db0041ca88cb86a1b2e208cf5d95c22e52f4ab.tar.zst
gsoc2013-empathy-c2db0041ca88cb86a1b2e208cf5d95c22e52f4ab.zip
event_manager_approve_channel_cb: check if the channel implements the group iface so that should work for Butterfly chats too
From: Guillaume Desmottes <gdesmott@gnome.org> svn path=/trunk/; revision=2458
Diffstat (limited to 'src')
-rw-r--r--src/empathy-event-manager.c51
1 files changed, 25 insertions, 26 deletions
diff --git a/src/empathy-event-manager.c b/src/empathy-event-manager.c
index f8b4381b2..525222b83 100644
--- a/src/empathy-event-manager.c
+++ b/src/empathy-event-manager.c
@@ -782,45 +782,44 @@ event_manager_approve_channel_cb (EmpathyDispatcher *dispatcher,
handle = tp_channel_get_handle (channel, &handle_type);
- if (handle_type == TP_HANDLE_TYPE_CONTACT)
- {
- /* 1-1 text channel, wait for the first message */
- approval->handler = g_signal_connect (tp_chat, "message-received",
- G_CALLBACK (event_manager_chat_message_received_cb), approval);
- }
- else if (handle_type == TP_HANDLE_TYPE_ROOM)
+ if (tp_proxy_has_interface (channel, TP_IFACE_CHANNEL_INTERFACE_GROUP))
{
+ /* Are we in local-pending ? */
TpHandle self_handle, inviter;
- EmpathyContactFactory *contact_factory;
- McAccount *account;
self_handle = tp_channel_group_get_self_handle (channel);
- if (self_handle == 0 || !tp_channel_group_get_local_pending_info (
+ if (self_handle != 0 || tp_channel_group_get_local_pending_info (
channel, self_handle, &inviter, NULL, NULL))
{
- DEBUG ("can't handle a incoming muc to which we have not been "
- "invited");
+ /* We are invited to a room */
+ EmpathyContactFactory *contact_factory;
+ McAccount *account;
- if (empathy_dispatch_operation_claim (approval->operation))
- empathy_tp_chat_close (tp_chat);
- return;
- }
+ DEBUG ("Have been invited to %s. Ask user if he wants to accept",
+ tp_channel_get_identifier (channel));
- /* We are invited to a room */
- account = empathy_tp_chat_get_account (tp_chat);
- contact_factory = empathy_contact_factory_dup_singleton ();
+ account = empathy_tp_chat_get_account (tp_chat);
+ contact_factory = empathy_contact_factory_dup_singleton ();
- approval->contact = empathy_contact_factory_get_from_handle (
- contact_factory, account, inviter);
+ approval->contact = empathy_contact_factory_get_from_handle (
+ contact_factory, account, inviter);
- empathy_contact_call_when_ready (approval->contact,
- EMPATHY_CONTACT_READY_NAME,
- event_manager_muc_invite_got_contact_name_cb, approval, NULL,
- G_OBJECT (manager));
+ empathy_contact_call_when_ready (approval->contact,
+ EMPATHY_CONTACT_READY_NAME,
+ event_manager_muc_invite_got_contact_name_cb, approval, NULL,
+ G_OBJECT (manager));
- g_object_unref (contact_factory);
+ g_object_unref (contact_factory);
+ return;
+ }
+
+ /* if we are not invited, let's wait for the first message */
}
+
+ /* 1-1 text channel, wait for the first message */
+ approval->handler = g_signal_connect (tp_chat, "message-received",
+ G_CALLBACK (event_manager_chat_message_received_cb), approval);
}
else if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA))
{