From e3798295d45c81ee88f2ebd3012e7502e553979c Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Thu, 13 Mar 2025 13:53:49 +0100 Subject: [PATCH] frontend: Update expiration date comment for room creation 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 eff763e..0087433 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 + expirationDate: Date.now() + 3600 // 1 hour }; const room: OpenViduMeetRoom = await this.httpService.createRoom(options);