From c75437ea88e8026fe11e7c6154360931531923e8 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Sat, 14 Jun 2025 13:57:37 +0200 Subject: [PATCH] webcomponent: update iframe source to support recording URL --- frontend/webcomponent/src/components/OpenViduMeet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/webcomponent/src/components/OpenViduMeet.ts b/frontend/webcomponent/src/components/OpenViduMeet.ts index c62298f..847223d 100644 --- a/frontend/webcomponent/src/components/OpenViduMeet.ts +++ b/frontend/webcomponent/src/components/OpenViduMeet.ts @@ -131,7 +131,7 @@ export class OpenViduMeet extends HTMLElement { } private updateIframeSrc() { - const baseUrl = this.getAttribute('room-url') || ''; + const baseUrl = this.getAttribute('room-url') || this.getAttribute('recording-url'); if (!baseUrl) { console.error('The "room-url" attribute is required.'); return;