mirror of https://github.com/Chocobozzz/PeerTube
Fix http player defaulting to audio resolution
parent
462212107a
commit
1a5b67b66d
|
@ -557,7 +557,8 @@ class WebTorrentPlugin extends Plugin {
|
|||
private pickAverageVideoFile () {
|
||||
if (this.videoFiles.length === 1) return this.videoFiles[0]
|
||||
|
||||
return this.videoFiles[Math.floor(this.videoFiles.length / 2)]
|
||||
const files = this.videoFiles.filter(f => f.resolution.id !== 0)
|
||||
return files[Math.floor(files.length / 2)]
|
||||
}
|
||||
|
||||
private stopTorrent (torrent: WebTorrent.Torrent) {
|
||||
|
|
Loading…
Reference in New Issue