mirror of https://github.com/Chocobozzz/PeerTube
parent
eb7a06c812
commit
7dbdc3bace
|
@ -161,6 +161,11 @@ const peertubePlugin = function (options: PeertubePluginOptions) {
|
||||||
player.torrent.on('warning', err => {
|
player.torrent.on('warning', err => {
|
||||||
// We don't support HTTP tracker but we don't care -> we use the web socket tracker
|
// We don't support HTTP tracker but we don't care -> we use the web socket tracker
|
||||||
if (err.message.indexOf('Unsupported tracker protocol: http') !== -1) return
|
if (err.message.indexOf('Unsupported tracker protocol: http') !== -1) return
|
||||||
|
// Users don't care about issues with WebRTC, but developers do so log it in the console
|
||||||
|
if (err.message.indexOf('Ice connection failed') !== -1) {
|
||||||
|
console.error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
return handleError(err)
|
return handleError(err)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue