empathy r2458 - trunk/src
- From: xclaesse svn gnome org
- To: svn-commits-list gnome org
- Subject: empathy r2458 - trunk/src
- Date: Fri, 13 Feb 2009 10:26:33 +0000 (UTC)
Author: xclaesse
Date: Fri Feb 13 10:26:32 2009
New Revision: 2458
URL: http://svn.gnome.org/viewvc/empathy?rev=2458&view=rev
Log:
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>
Modified:
trunk/src/empathy-event-manager.c
Modified: trunk/src/empathy-event-manager.c
==============================================================================
--- trunk/src/empathy-event-manager.c (original)
+++ trunk/src/empathy-event-manager.c Fri Feb 13 10:26:32 2009
@@ -782,45 +782,44 @@
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;
+
+ DEBUG ("Have been invited to %s. Ask user if he wants to accept",
+ tp_channel_get_identifier (channel));
+
+ account = empathy_tp_chat_get_account (tp_chat);
+ contact_factory = empathy_contact_factory_dup_singleton ();
- if (empathy_dispatch_operation_claim (approval->operation))
- empathy_tp_chat_close (tp_chat);
+ 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));
+
+ g_object_unref (contact_factory);
return;
}
- /* We are invited to a room */
- 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);
-
- 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);
+ /* 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))
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]