aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-02-17 05:24:46 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-02-17 05:24:46 +0800
commit3a188478a8be5fda6ec7db849bad28d9d11e11bf (patch)
tree3a45e1820f4a6259fdf5d456f9146112e7d4937b
parent1f960da11cee451bfc474e15d74734a54598251d (diff)
downloadgsoc2013-empathy-3a188478a8be5fda6ec7db849bad28d9d11e11bf.tar
gsoc2013-empathy-3a188478a8be5fda6ec7db849bad28d9d11e11bf.tar.gz
gsoc2013-empathy-3a188478a8be5fda6ec7db849bad28d9d11e11bf.tar.bz2
gsoc2013-empathy-3a188478a8be5fda6ec7db849bad28d9d11e11bf.tar.lz
gsoc2013-empathy-3a188478a8be5fda6ec7db849bad28d9d11e11bf.tar.xz
gsoc2013-empathy-3a188478a8be5fda6ec7db849bad28d9d11e11bf.tar.zst
gsoc2013-empathy-3a188478a8be5fda6ec7db849bad28d9d11e11bf.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> git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@2480 4ee84921-47dd-4033-b63a-18d7a039a3e4
-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