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);