]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Relax webtorrent file check
authorChocobozzz <me@florianbigard.com>
Mon, 7 Dec 2020 15:53:11 +0000 (16:53 +0100)
committerChocobozzz <me@florianbigard.com>
Mon, 7 Dec 2020 15:53:11 +0000 (16:53 +0100)
client/src/assets/player/webtorrent/webtorrent-plugin.ts

index 9beb04d108bf4a20ca9bc0308e48ae43a49ba92f..c36362408238e21a521f1af8902c7499dba5732f 100644 (file)
@@ -132,14 +132,14 @@ class WebTorrentPlugin extends Plugin {
     done: () => void = () => { /* empty */ }
   ) {
     // Automatically choose the adapted video file
-    if (videoFile === undefined) {
+    if (!videoFile) {
       const savedAverageBandwidth = getAverageBandwidthInStore()
       videoFile = savedAverageBandwidth
         ? this.getAppropriateFile(savedAverageBandwidth)
         : this.pickAverageVideoFile()
     }
 
-    if (!!videoFile) {
+    if (!videoFile) {
       throw Error(`Can't update video file since videoFile is undefined.`)
     }
 
@@ -149,7 +149,7 @@ class WebTorrentPlugin extends Plugin {
     }
 
     // Do not display error to user because we will have multiple fallback
-    this.disableErrorDisplay();
+    this.disableErrorDisplay()
 
     // Hack to "simulate" src link in video.js >= 6
     // Without this, we can't play the video after pausing it