Merge pull request #3058 from nextcloud/bugfix/3036/broken-redirect-on-join-error

Change redirect in case an error happens when joining a call
This commit is contained in:
Joas Schilling 2020-03-09 14:11:55 +01:00 коммит произвёл GitHub
Родитель 2d38b0a9c2 0c7da286af
Коммит a8d5a285f7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -266,8 +266,10 @@ Signaling.Base.prototype.joinCall = function(token, flags) {
}.bind(this))
.catch(function() {
reject(new Error())
// Room not found or maintenance mode
OC.redirect(OC.generateUrl('apps/spreed'))
// Server maintenance, lobby kicked in, or room not found.
// We first redirect to the conversation again and that
// will then show the proper error message to the user.
OC.redirect(OC.generateUrl('call/' + token))
})
})
}