diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx
index 105b865..e16eddc 100644
--- a/client/src/components/video-card.tsx
+++ b/client/src/components/video-card.tsx
@@ -136,12 +136,12 @@ export default function VideoCard({ video, onClick, className = "" }: VideoCardP
onCanPlay={() => console.log('Preview ready for:', video.title)}
>
{/* Try MP4 source first for faster loading on mobile */}
- {video.mp4Url && (
-
+ {video.videoUrlMp4 && (
+
)}
{/* Fallback to HLS if MP4 fails */}
- {video.hlsUrl && (
-
+ {video.videoUrl && (
+
)}