Update aspect ratio logic

This commit is contained in:
Preston 2021-01-20 13:57:36 -05:00
parent b7846493ef
commit 81130f89f9
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ export default Vue.extend({
return return
} }
if (videoWidth <= videoHeight) { if ((videoHeight - videoWidth) <= 240) {
this.player.fluid(false) this.player.fluid(false)
this.player.aspectRatio('16:9') this.player.aspectRatio('16:9')
} }