diff --git a/.env.example b/.env.example index 20515d7..8d5f47e 100644 --- a/.env.example +++ b/.env.example @@ -74,7 +74,8 @@ BUNNY_STREAM_LIBRARY_ID="your-library-id" # Bunny Core API key (account-level) used to enforce KeepOriginalFiles/ExposeOriginals on the library BUNNY_API_KEY="your-account-api-key" # Bunny Stream CDN base URL (for HLS streaming) -BUNNY_CDN_URL="https://vz-965f4f4a-fc1.b-cdn.net" +BUNNY_CDN_URL="your-url-to-bunny-cdn" +NEXT_PUBLIC_BUNNY_CDN_URL="your-url-to-bunny-cdn" # Bunny orphan cleanup configuration (script + external cron; app runtime does not schedule this) # Grace period is fixed at 24 hours in the script. # */15 * * * * cd /home/yusuf/Programming/OpenFrame && bun run bunny:cleanup-orphans diff --git a/components/video-card.tsx b/components/video-card.tsx index e1903a5..e45e13b 100644 --- a/components/video-card.tsx +++ b/components/video-card.tsx @@ -195,7 +195,8 @@ export function VideoCard({ video, projectId, canManage, onDeleted }: VideoCardP {imgError ? (
{asset.displayName}
-{asset.displayName}
+- {asset.uploadedByUser?.name || asset.uploadedByGuestName || 'Unknown'} • {new Date(asset.createdAt).toLocaleDateString()} -
-+ {asset.uploadedByUser?.name || asset.uploadedByGuestName || 'Unknown'} • {new Date(asset.createdAt).toLocaleDateString()} +
+