diff --git a/server/bunny.ts b/server/bunny.ts index 7e6688a..64c78e6 100644 --- a/server/bunny.ts +++ b/server/bunny.ts @@ -79,7 +79,7 @@ export class BunnyService { // Generate signed HLS URL for private video access const hlsUrl = this.generateSignedUrl(bunnyVideo.guid); - const iframeUrl = `https://iframe.mediadelivery.net/embed/${this.libraryId}/${bunnyVideo.guid}?preroll=false&postroll=false&ads=false&controls=false&bigPlayButton=false¢erPlayButton=false`; + const iframeUrl = `https://iframe.mediadelivery.net/embed/${this.libraryId}/${bunnyVideo.guid}?preroll=false&postroll=false&ads=false&bigPlayButton=false¢erPlayButton=false`; // Extract description from BunnyVideoDetails if available let description = 'description' in bunnyVideo ? bunnyVideo.description || "" : "";