diff options
author | David Baker <dbkr@matrix.org> | 2014-09-25 11:13:32 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-25 11:14:29 +0100 |
commit | c0936b103c215aef12d64fbb490d8daef07903c4 (patch) | |
tree | 3449ba1a25ffce7c2ce21503305fa0949c24f500 /webclient/index.html | |
parent | Make turn server endpoint return an empty object if no turn servers to (diff) | |
download | synapse-c0936b103c215aef12d64fbb490d8daef07903c4.tar.xz |
Add stun server fallback and I-told-you-so message if we get no TURN server and the connection fails.
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> |