diff --git a/client/src/assets/player/peertube-videojs-plugin.ts b/client/src/assets/player/peertube-videojs-plugin.ts index 19490baf2..30ef7c49c 100644 --- a/client/src/assets/player/peertube-videojs-plugin.ts +++ b/client/src/assets/player/peertube-videojs-plugin.ts @@ -160,7 +160,7 @@ const peertubePlugin = function (options: PeertubePluginOptions) { player.torrent.on('error', err => handleError(err)) player.torrent.on('warning', err => { // 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) })