Fix theater mode

pull/3284/head
Chocobozzz 2020-11-05 10:27:02 +01:00 committed by Chocobozzz
parent bd54ad1953
commit 99fa5c5bad
2 changed files with 7 additions and 4 deletions

View File

@ -29,6 +29,7 @@ $video-info-margin-left: 44px;
#videojs-wrapper {
width: 100%;
height: auto;
}
::ng-deep .video-js {

View File

@ -238,7 +238,7 @@ describe('Test user notifications API validators', function () {
it('Should fail with no token', function (next) {
const socket = io(`http://localhost:${server.port}/user-notifications`, { reconnection: false })
socket.on('error', () => {
socket.on('error', function () {
socket.removeListener('error', this)
socket.disconnect()
next()
@ -256,7 +256,7 @@ describe('Test user notifications API validators', function () {
reconnection: false
})
socket.on('error', () => {
socket.on('error', function () {
socket.removeListener('error', this)
socket.disconnect()
next()
@ -274,9 +274,11 @@ describe('Test user notifications API validators', function () {
reconnection: false
})
const errorListener = socket.on('error', err => {
function errorListener (err) {
next(new Error('Error in connection: ' + err))
})
}
socket.on('error', errorListener)
socket.on('connect', async () => {
socket.removeListener('error', errorListener)