mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-08 22:53:22 +03:00
Fix auto quality with http fallback
This commit is contained in:
parent
a8462c8e3a
commit
877b0528f8
@ -313,7 +313,8 @@ class PeerTubePlugin extends Plugin {
|
||||
|
||||
private runAutoQualityScheduler () {
|
||||
this.autoQualityInterval = setInterval(() => {
|
||||
if (this.torrent === undefined) return
|
||||
// Not initialized or in HTTP fallback
|
||||
if (this.torrent === undefined || this.torrent === null) return
|
||||
if (this.isAutoResolutionOn() === false) return
|
||||
if (this.isAutoResolutionObservation === true) return
|
||||
|
||||
|
@ -62,7 +62,7 @@ class WebtorrentInfoButton extends Button {
|
||||
})
|
||||
const subDivFallbackText = videojsUntyped.dom.createEl('span', {
|
||||
className: 'peers-text',
|
||||
textContent: 'fallback'
|
||||
textContent: ' fallback'
|
||||
})
|
||||
|
||||
subDivHttp.appendChild(subDivHttpText)
|
||||
|
Loading…
Reference in New Issue
Block a user