![]() |
2014-04-19
, 10:57
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#1
|
The Following User Says Thank You to pali For This Useful Post: | ||
![]() |
2014-05-20
, 20:33
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#2
|
diff --git a/src/media-channel.c b/src/media-channel.c index 7bd07c7..abe9054 100644 --- a/src/media-channel.c +++ b/src/media-channel.c @@ -2488,6 +2488,13 @@ stream_error_cb (GabbleMediaStream *stream, GList *contents; guint id; + /* Ignore error: Invalid remote candidates passed + * This error is sent by Google Web Client for every voice call + * and if is not ignored voice call is terminated after few seconds + */ + if (errno == 6) + return; + /* emit signal */ g_object_get (stream, "id", &id, NULL); tp_svc_channel_type_streamed_media_emit_stream_error (chan, id, errno,
The Following 8 Users Say Thank You to pali For This Useful Post: | ||
![]() |
2014-06-02
, 18:33
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#3
|
The Following 3 Users Say Thank You to pali For This Useful Post: | ||