From 7a54e07966309c07aa79d9ddd344472fa518141e Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 30 Sep 2022 20:32:24 -0500 Subject: [PATCH] Video: fix default aspect ratio (16:9) --- app/soapbox/features/video/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/features/video/index.tsx b/app/soapbox/features/video/index.tsx index 736fe8114..871e80774 100644 --- a/app/soapbox/features/video/index.tsx +++ b/app/soapbox/features/video/index.tsx @@ -135,7 +135,7 @@ const Video: React.FC = ({ alt, onCloseVideo, inline, - aspectRatio = 0, + aspectRatio = 16 / 9, link, blurhash, }) => {