diff options
author | David Baker <dbkr@matrix.org> | 2014-09-25 13:09:56 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-25 13:09:56 +0100 |
commit | c58eb0d5a3ed9c4eac3b7af9d78a9ed1ae6da9fe (patch) | |
tree | 85a1e05e91b0601e944295f7828af0b6e2cce814 /webclient/index.html | |
parent | Fix test where we changed arguments used to call the notifier (diff) | |
parent | Add stun server fallback and I-told-you-so message if we get no TURN server a... (diff) | |
download | synapse-c58eb0d5a3ed9c4eac3b7af9d78a9ed1ae6da9fe.tar.xz |
Merge branch 'turn' into develop
Diffstat (limited to 'webclient/index.html')
-rw-r--r-- | webclient/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/index.html b/webclient/index.html index 411c2762d3..f233919e3d 100644 --- a/webclient/index.html +++ b/webclient/index.html @@ -69,7 +69,7 @@ <span ng-show="currentCall.state == 'ringing' && currentCall && currentCall.type == 'voice'">Incoming Voice Call</span> <span ng-show="currentCall.state == 'connecting'">Call Connecting...</span> <span ng-show="currentCall.state == 'connected'">Call Connected</span> - <span ng-show="currentCall.state == 'ended' && currentCall.hangupReason == 'ice_failed'">Media Connection Failed</span> + <span ng-show="currentCall.state == 'ended' && currentCall.hangupReason == 'ice_failed'">Media Connection Failed{{ haveTurn ? "" : " (VoIP relaying unsupported by Home Server)" }}</span> <span ng-show="currentCall.state == 'ended' && !currentCall.hangupReason && !currentCall.didConnect && currentCall.direction == 'outbound' && currentCall.hangupParty == 'remote'">Call Rejected</span> <span ng-show="currentCall.state == 'ended' && !currentCall.hangupReason && !currentCall.didConnect && currentCall.direction == 'outbound' && currentCall.hangupParty == 'local'">Call Canceled</span> <span ng-show="currentCall.state == 'ended' && currentCall.hangupReason == 'invite_timeout' && !currentCall.didConnect && currentCall.direction == 'outbound' && currentCall.hangupParty == 'local'">User Not Responding</span> |