Merge pull request #6189 from nextcloud/bugfix/5777/improve-error-handling

Handle errors better
This commit is contained in:
Daniel Calviño Sánchez 2021-09-01 13:14:08 +02:00 коммит произвёл GitHub
Родитель f7aa9f90aa f442016423
Коммит bccdae33d0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -720,6 +720,13 @@ Signaling.Standalone.prototype.connect = function() {
message.from = data.control.sender.sessionid
this._trigger('message', [message])
break
case 'error':
if (data.error.code === 'processing_failed') {
console.error('An error occurred processing the signaling message, please ask your server administrator to check the log file')
} else {
console.error('Ignore unknown error', data)
}
break
default:
if (!id) {
console.error('Ignore unknown event', data)