From 13e9540b607d216db8f6b921c7cd87389f413b73 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Thu, 13 Mar 2025 15:09:00 +0100 Subject: [PATCH] frontend: Fix expiration date calculation for room options --- frontend/src/app/pages/home/home.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/pages/home/home.component.ts b/frontend/src/app/pages/home/home.component.ts index 3ec4ce8..2d1a536 100644 --- a/frontend/src/app/pages/home/home.component.ts +++ b/frontend/src/app/pages/home/home.component.ts @@ -142,7 +142,7 @@ export class HomeComponent implements OnInit, OnDestroy { // TODO: Fix expiration date const options: OpenViduMeetRoomOptions = { roomNamePrefix, - expirationDate: Date.now() + 3600 // 1 hour + expirationDate: Date.now() + 3600 * 1000 // 1 hour }; const room: OpenViduMeetRoom = await this.httpService.createRoom(options);