From a9eb5c17652ca0580cf9753fa264ff6d4d4b5e37 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 28 May 2020 12:30:54 -0500 Subject: [PATCH] Force videos to 300px height on Pleroma, fixes #117 --- app/gabsocial/features/video/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gabsocial/features/video/index.js b/app/gabsocial/features/video/index.js index 0e3be6049..6a04d778d 100644 --- a/app/gabsocial/features/video/index.js +++ b/app/gabsocial/features/video/index.js @@ -445,7 +445,7 @@ class Video extends React.PureComponent { aria-label={alt} title={alt} width={width} - height={height || null} + height={height || 300} volume={volume} onClick={this.togglePlay} onPlay={this.handlePlay}