diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-02-23 02:04:16 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-30 19:28:24 +0800 |
commit | 174a1b4a20753f7467c1c78f5163660a233fb36b (patch) | |
tree | f9fe5803e0a3b5d16a97a005c27ddddf36f0962c /libempathy | |
parent | c95542fa3be19a5350bec6b631d97a4734e9f27d (diff) | |
download | gsoc2013-empathy-174a1b4a20753f7467c1c78f5163660a233fb36b.tar gsoc2013-empathy-174a1b4a20753f7467c1c78f5163660a233fb36b.tar.gz gsoc2013-empathy-174a1b4a20753f7467c1c78f5163660a233fb36b.tar.bz2 gsoc2013-empathy-174a1b4a20753f7467c1c78f5163660a233fb36b.tar.lz gsoc2013-empathy-174a1b4a20753f7467c1c78f5163660a233fb36b.tar.xz gsoc2013-empathy-174a1b4a20753f7467c1c78f5163660a233fb36b.tar.zst gsoc2013-empathy-174a1b4a20753f7467c1c78f5163660a233fb36b.zip |
empathy_call_handler_stop_call: use empathy_tp_call_leave rather than empathy_tp_call_close
This will gracefully hang up calls (#610477).
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-call-handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-call-handler.c b/libempathy/empathy-call-handler.c index 3b7ce546c..a49baed44 100644 --- a/libempathy/empathy-call-handler.c +++ b/libempathy/empathy-call-handler.c @@ -554,7 +554,7 @@ empathy_call_handler_stop_call (EmpathyCallHandler *handler) if (priv->call != NULL) { - empathy_tp_call_close (priv->call); + empathy_tp_call_leave (priv->call); g_object_unref (priv->call); } |