mirror of https://github.com/Chocobozzz/PeerTube
hide error message in https too (#108)
parent
b9a20e5947
commit
8113a93a0d
|
@ -160,7 +160,7 @@ const peertubePlugin = function (options: PeertubePluginOptions) {
|
||||||
player.torrent.on('error', err => handleError(err))
|
player.torrent.on('error', err => handleError(err))
|
||||||
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
|
||||||
|
|
||||||
return handleError(err)
|
return handleError(err)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue