aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/assets/player/webtorrent/webtorrent-plugin.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-05-14 14:18:13 +0200
committerChocobozzz <me@florianbigard.com>2021-05-14 14:18:13 +0200
commit5b1a6d45b5d6e50102e1c7c8c845401b76b11b4d (patch)
treef4d7f184593e6e025b71cbe7cb4ea8583fd267b0 /client/src/assets/player/webtorrent/webtorrent-plugin.ts
parentaea0b0e7cde7495e60fe07b4444067f53d35ce3f (diff)
parentcb4bab61c19f2be7858f9cc6e8e234f04b1d504f (diff)
downloadPeerTube-5b1a6d45b5d6e50102e1c7c8c845401b76b11b4d.tar.gz
PeerTube-5b1a6d45b5d6e50102e1c7c8c845401b76b11b4d.tar.zst
PeerTube-5b1a6d45b5d6e50102e1c7c8c845401b76b11b4d.zip
Merge branch 'release/3.2.0' into develop
Diffstat (limited to 'client/src/assets/player/webtorrent/webtorrent-plugin.ts')
-rw-r--r--client/src/assets/player/webtorrent/webtorrent-plugin.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/assets/player/webtorrent/webtorrent-plugin.ts b/client/src/assets/player/webtorrent/webtorrent-plugin.ts
index 6f5fbe4c9..e27a16390 100644
--- a/client/src/assets/player/webtorrent/webtorrent-plugin.ts
+++ b/client/src/assets/player/webtorrent/webtorrent-plugin.ts
@@ -557,7 +557,8 @@ class WebTorrentPlugin extends Plugin {
557 private pickAverageVideoFile () { 557 private pickAverageVideoFile () {
558 if (this.videoFiles.length === 1) return this.videoFiles[0] 558 if (this.videoFiles.length === 1) return this.videoFiles[0]
559 559
560 return this.videoFiles[Math.floor(this.videoFiles.length / 2)] 560 const files = this.videoFiles.filter(f => f.resolution.id !== 0)
561 return files[Math.floor(files.length / 2)]
561 } 562 }
562 563
563 private stopTorrent (torrent: WebTorrent.Torrent) { 564 private stopTorrent (torrent: WebTorrent.Torrent) {