1
0
Fork 0

Also remove video session on muxing error

This commit is contained in:
Chocobozzz 2023-10-26 09:07:26 +02:00
parent dd7de7e32d
commit 8ecf95471d
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -378,6 +378,7 @@ class LiveManager {
.catch(err => { .catch(err => {
logger.error('Cannot run muxing.', { err, ...localLTags }) logger.error('Cannot run muxing.', { err, ...localLTags })
this.abortSession(sessionId) this.abortSession(sessionId)
this.videoSessions.delete(videoUUID)
}) })
} }