diff options
Diffstat (limited to 'client/src/assets')
-rw-r--r-- | client/src/assets/player/peertube-videojs-plugin.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/assets/player/peertube-videojs-plugin.ts b/client/src/assets/player/peertube-videojs-plugin.ts index 7cf3ea6cc..19490baf2 100644 --- a/client/src/assets/player/peertube-videojs-plugin.ts +++ b/client/src/assets/player/peertube-videojs-plugin.ts | |||
@@ -158,7 +158,12 @@ const peertubePlugin = function (options: PeertubePluginOptions) { | |||
158 | }) | 158 | }) |
159 | 159 | ||
160 | player.torrent.on('error', err => handleError(err)) | 160 | player.torrent.on('error', err => handleError(err)) |
161 | player.torrent.on('warning', err => handleError(err)) | 161 | player.torrent.on('warning', err => { |
162 | // We don't support HTTP tracker but we don't care -> we use the web socket tracker | ||
163 | if (err.message.indexOf('Unsupported tracker protocol: http://') !== -1) return | ||
164 | |||
165 | return handleError(err) | ||
166 | }) | ||
162 | 167 | ||
163 | player.trigger('videoFileUpdate') | 168 | player.trigger('videoFileUpdate') |
164 | 169 | ||