diff --git a/src/components/Timeline/Shared/Attachment/Video.tsx b/src/components/Timeline/Shared/Attachment/Video.tsx index be9055cc..49480a96 100644 --- a/src/components/Timeline/Shared/Attachment/Video.tsx +++ b/src/components/Timeline/Shared/Attachment/Video.tsx @@ -39,7 +39,11 @@ const AttachmentVideo: React.FC = ({ const playOnPress = async () => { setVideoLoading(true) if (!videoLoaded) { - await videoPlayer.current?.loadAsync(connectMedia({ uri: video.url }) as { uri: string }) + await videoPlayer.current?.loadAsync( + connectMedia({ + uri: video.url.includes('/media_proxy/') ? video.remote_url : video.url + }) as any + ) } setVideoLoading(false)