LH-276: Update producer close event handler

This commit is contained in:
Sergiu Toma 2023-02-21 01:57:56 +02:00
parent a214f4384e
commit bc07a055e0
2 changed files with 2 additions and 2 deletions

View File

@ -20842,7 +20842,7 @@ const connectRecvTransport = async () => {
socket.emit('consumer-resume') socket.emit('consumer-resume')
}) })
.catch((error) => { .catch((error) => {
displayError(`remoteVideo PLAY ERROR | ${error.message}`) console.error(`remoteVideo PLAY ERROR | ${error.message}`)
}) })
}) })
} }

View File

@ -484,7 +484,7 @@ const connectRecvTransport = async () => {
socket.emit('consumer-resume') socket.emit('consumer-resume')
}) })
.catch((error) => { .catch((error) => {
displayError(`remoteVideo PLAY ERROR | ${error.message}`) console.error(`remoteVideo PLAY ERROR | ${error.message}`)
}) })
}) })
} }