diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-02-21 22:31:50 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 17:20:05 +0800 |
commit | e71003c3547c3ecf62813c7716953d745628f8f7 (patch) | |
tree | 3135f4619df677f98ebc06ef2ec121077e636ddf | |
parent | 3c218b8490700d973fb049037e37c3a3e58c11f7 (diff) | |
download | gsoc2013-empathy-e71003c3547c3ecf62813c7716953d745628f8f7.tar gsoc2013-empathy-e71003c3547c3ecf62813c7716953d745628f8f7.tar.gz gsoc2013-empathy-e71003c3547c3ecf62813c7716953d745628f8f7.tar.bz2 gsoc2013-empathy-e71003c3547c3ecf62813c7716953d745628f8f7.tar.lz gsoc2013-empathy-e71003c3547c3ecf62813c7716953d745628f8f7.tar.xz gsoc2013-empathy-e71003c3547c3ecf62813c7716953d745628f8f7.tar.zst gsoc2013-empathy-e71003c3547c3ecf62813c7716953d745628f8f7.zip |
Call: check for priv->members to enable the video button
-rw-r--r-- | src/empathy-call-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 7d7b43c68..fc5568953 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -2427,7 +2427,7 @@ empathy_call_window_connected (gpointer user_data) empathy_sound_manager_stop (priv->sound_mgr, EMPATHY_SOUND_PHONE_OUTGOING); - can_send_video = priv->video_input != NULL && priv->contact != NULL && + can_send_video = priv->video_input != NULL && priv->members != NULL && empathy_contact_can_voip_video (priv->contact); g_object_get (priv->handler, "call-channel", &call, NULL); |