aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2009-09-15 21:33:54 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2009-09-16 22:21:11 +0800
commit6b9572e4fb5d3c96c81b2588a26388cd955c772c (patch)
tree9659146c5b165301a2cb7eb0f738263502a7289e
parent847a84ee29bb94a8f03f65f431c1e78fac05e13b (diff)
downloadgsoc2013-empathy-6b9572e4fb5d3c96c81b2588a26388cd955c772c.tar
gsoc2013-empathy-6b9572e4fb5d3c96c81b2588a26388cd955c772c.tar.gz
gsoc2013-empathy-6b9572e4fb5d3c96c81b2588a26388cd955c772c.tar.bz2
gsoc2013-empathy-6b9572e4fb5d3c96c81b2588a26388cd955c772c.tar.lz
gsoc2013-empathy-6b9572e4fb5d3c96c81b2588a26388cd955c772c.tar.xz
gsoc2013-empathy-6b9572e4fb5d3c96c81b2588a26388cd955c772c.tar.zst
gsoc2013-empathy-6b9572e4fb5d3c96c81b2588a26388cd955c772c.zip
Dispatch existing channels once we initialize the connection.
-rw-r--r--libempathy/empathy-dispatcher.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c
index 18647e4e2..0cd490b86 100644
--- a/libempathy/empathy-dispatcher.c
+++ b/libempathy/empathy-dispatcher.c
@@ -748,6 +748,7 @@ dispatcher_connection_got_all (TpProxy *proxy,
EmpathyDispatcher *dispatcher = EMPATHY_DISPATCHER (object);
EmpathyDispatcherPriv *priv = GET_PRIV (dispatcher);
GPtrArray *requestable_channels;
+ GPtrArray *existing_channels;
if (error) {
DEBUG ("Error: %s", error->message);
@@ -792,6 +793,26 @@ dispatcher_connection_got_all (TpProxy *proxy,
g_hash_table_remove (priv->outstanding_classes_requests, proxy);
}
+
+ existing_channels = tp_asv_get_boxed (properties,
+ "Channels", TP_ARRAY_TYPE_CHANNEL_DETAILS_LIST);
+
+ if (existing_channels != NULL)
+ {
+ int idx;
+
+ for (idx = 0; idx < existing_channels->len; idx++)
+ {
+ GValueArray *values = g_ptr_array_index (existing_channels, idx);
+ const gchar *object_path;
+ GHashTable *properties;
+
+ object_path = g_value_get_boxed (g_value_array_get_nth (values, 0));
+ properties = g_value_get_boxed (g_value_array_get_nth (values, 1));
+ dispatcher_connection_new_channel_with_properties (dispatcher,
+ TP_CONNECTION (proxy), object_path, properties);
+ }
+ }
}
static void