diff --git a/src/components/catalog-row/catalog-row.tsx b/src/components/catalog-row/catalog-row.tsx
index 766cd4ff..ab1a9bc6 100644
--- a/src/components/catalog-row/catalog-row.tsx
+++ b/src/components/catalog-row/catalog-row.tsx
@@ -54,6 +54,7 @@ export const CatalogPostMedia = ({ commentMediaInfo, isOutOfFeed, linkWidth, lin
thumbnailComponent = thumbnail ? (
) : (
+ // show first frame of the video, as a workaround for Safari not loading thumbnails
);
} else if (type === 'webpage' && !hasError) {
diff --git a/src/components/comment-media/comment-media.tsx b/src/components/comment-media/comment-media.tsx
index 0df99bc7..de48e6b6 100644
--- a/src/components/comment-media/comment-media.tsx
+++ b/src/components/comment-media/comment-media.tsx
@@ -49,7 +49,12 @@ const Thumbnail = ({ commentMediaInfo, isOutOfFeed, isReply, linkHeight, linkWid
if (type === 'image') {
thumbnailComponent =
setShowThumbnail(false)} />;
} else if (type === 'video') {
- thumbnailComponent = thumbnail ?
: