aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-02-17 05:24:46 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-02-17 05:24:46 +0800
commit8b42924a86066e2e62a69376aac5dec523145f8a (patch)
tree3a45e1820f4a6259fdf5d456f9146112e7d4937b
parent293d613c0a54829e2c0d91e2aa775fff84ce2eb3 (diff)
downloadgsoc2013-empathy-8b42924a86066e2e62a69376aac5dec523145f8a.tar
gsoc2013-empathy-8b42924a86066e2e62a69376aac5dec523145f8a.tar.gz
gsoc2013-empathy-8b42924a86066e2e62a69376aac5dec523145f8a.tar.bz2
gsoc2013-empathy-8b42924a86066e2e62a69376aac5dec523145f8a.tar.lz
gsoc2013-empathy-8b42924a86066e2e62a69376aac5dec523145f8a.tar.xz
gsoc2013-empathy-8b42924a86066e2e62a69376aac5dec523145f8a.tar.zst
gsoc2013-empathy-8b42924a86066e2e62a69376aac5dec523145f8a.zip
Wait for handle instead of id before request a channel
This fixes calling from the new converstaion dialog to new contacts. As they start of with an id right away but have no handle yet. Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2480
-rw-r--r--libempathy/empathy-call-handler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-call-handler.c b/libempathy/empathy-call-handler.c
index aecf655be..41cef6707 100644
--- a/libempathy/empathy-call-handler.c
+++ b/libempathy/empathy-call-handler.c
@@ -407,7 +407,7 @@ empathy_call_handler_start_call (EmpathyCallHandler *handler)
if (priv->call == NULL)
{
empathy_contact_call_when_ready (priv->contact,
- EMPATHY_CONTACT_READY_ID,
+ EMPATHY_CONTACT_READY_HANDLE,
empathy_call_handler_contact_ready_cb, NULL, NULL, G_OBJECT (handler));
}
else