Show an error message to users with the HPB is incompatible

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-11-03 16:04:23 +01:00
Родитель 4d2ecfcd96
Коммит 0e1b20723f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -962,6 +962,16 @@ Signaling.Standalone.prototype.helloResponseReceived = function(data) {
}
}
if (!this.features['audio-video-permissions']) {
showError(
t('spreed', 'The configured signaling server needs to be updated to be compatible with this version of Talk. Please contact your administrator.'),
{
timeout: TOAST_PERMANENT_TIMEOUT,
}
)
console.error('The configured signaling server needs to be updated to be compatible with this version of Talk. Please contact your administrator.')
}
const messages = this.pendingMessages
this.pendingMessages = []
for (i = 0; i < messages.length; i++) {