aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/empathy-call-window.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index f067ff9aa..ffea4f024 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -1564,6 +1564,9 @@ media_stream_error_to_txt (EmpathyCallWindow *self,
"direct connections."),
empathy_contact_get_name (priv->contact));
+ case TP_MEDIA_STREAM_ERROR_NETWORK_ERROR:
+ return g_strdup (_("There was a failure on the network"));
+
case TP_MEDIA_STREAM_ERROR_NO_CODECS:
if (audio)
return g_strdup (_("Your computer doesn't support any audio format"));
@@ -1578,7 +1581,6 @@ media_stream_error_to_txt (EmpathyCallWindow *self,
case TP_MEDIA_STREAM_ERROR_MEDIA_ERROR:
return g_strdup (_("There was a failure in the call engine"));
- /* TODO: support more errors */
default:
return NULL;
}