mirror of https://github.com/Chocobozzz/PeerTube
Fix incorrect resolution with webtorrent videos
parent
496d784d05
commit
aea53cc649
|
@ -369,11 +369,10 @@ class WebTorrentPlugin extends Plugin {
|
|||
if (files.length === 0) return undefined
|
||||
if (files.length === 1) return files[0]
|
||||
|
||||
// Don't change the torrent is the play was ended
|
||||
// Don't change the torrent if the player ended
|
||||
if (this.torrent && this.torrent.progress === 1 && this.player.ended()) return this.currentVideoFile
|
||||
|
||||
if (!averageDownloadSpeed) averageDownloadSpeed = this.getAndSaveActualDownloadSpeed()
|
||||
averageDownloadSpeed = 0
|
||||
|
||||
// Limit resolution according to player height
|
||||
const playerHeight = this.playerElement.offsetHeight
|
||||
|
|
Loading…
Reference in New Issue