mirror of https://github.com/Chocobozzz/PeerTube
Fix player ratio on audio only
parent
cfcbfb668e
commit
5cf5465d20
|
@ -229,7 +229,7 @@ class PeerTubePlugin extends Plugin {
|
||||||
// In portrait screen mode, we allow player with bigger height size than width
|
// In portrait screen mode, we allow player with bigger height size than width
|
||||||
const portraitMode = getComputedStyle(el).getPropertyValue(this.options.autoPlayerRatio.cssPlayerPortraitModeVariable) === '1'
|
const portraitMode = getComputedStyle(el).getPropertyValue(this.options.autoPlayerRatio.cssPlayerPortraitModeVariable) === '1'
|
||||||
|
|
||||||
const currentRatio = !portraitMode && data.ratio < 1
|
const currentRatio = isNaN(data.ratio) || (!portraitMode && data.ratio < 1)
|
||||||
? defaultRatio
|
? defaultRatio
|
||||||
: data.ratio
|
: data.ratio
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue