diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-19 23:12:50 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-19 23:12:50 +0800 |
commit | 86a3d7231f766c1c157ce84bf2444c396610a4fb (patch) | |
tree | d3c26a08ef09406e1f5ae7ed4f31138460b2c6e8 /libempathy | |
parent | 1f6d356c8b5d55afdc4a2383f3d56c458c56f53e (diff) | |
download | gsoc2013-empathy-86a3d7231f766c1c157ce84bf2444c396610a4fb.tar gsoc2013-empathy-86a3d7231f766c1c157ce84bf2444c396610a4fb.tar.gz gsoc2013-empathy-86a3d7231f766c1c157ce84bf2444c396610a4fb.tar.bz2 gsoc2013-empathy-86a3d7231f766c1c157ce84bf2444c396610a4fb.tar.lz gsoc2013-empathy-86a3d7231f766c1c157ce84bf2444c396610a4fb.tar.xz gsoc2013-empathy-86a3d7231f766c1c157ce84bf2444c396610a4fb.tar.zst gsoc2013-empathy-86a3d7231f766c1c157ce84bf2444c396610a4fb.zip |
dispatcher: don't check for Requests when fetching conn properties
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-dispatcher.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index 08bfad7ae..027a9601f 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -819,14 +819,9 @@ connection_ready_cb (TpConnection *connection, goto out; } - if (tp_proxy_has_interface_by_id (TP_PROXY (connection), - TP_IFACE_QUARK_CONNECTION_INTERFACE_REQUESTS)) - { - tp_cli_dbus_properties_call_get_all (connection, -1, - TP_IFACE_CONNECTION_INTERFACE_REQUESTS, - dispatcher_connection_got_all, - NULL, NULL, G_OBJECT (self)); - } + tp_cli_dbus_properties_call_get_all (connection, -1, + TP_IFACE_CONNECTION_INTERFACE_REQUESTS, dispatcher_connection_got_all, + NULL, NULL, G_OBJECT (self)); /* Advertise VoIP capabilities */ capabilities = g_ptr_array_sized_new (1); |