From 8113a93a0d9f31aa9e23702bbc31b8a76275ae22 Mon Sep 17 00:00:00 2001
From: Adam Magnier <qsypoq@users.noreply.github.com>
Date: Thu, 26 Oct 2017 07:46:15 +0200
Subject: [PATCH] hide error message in https too (#108)

---
 client/src/assets/player/peertube-videojs-plugin.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)
     })