diff --git a/frontend/projects/shared-meet-components/src/lib/pages/video-room/video-room.component.ts b/frontend/projects/shared-meet-components/src/lib/pages/video-room/video-room.component.ts index 7e32a27..e48a662 100644 --- a/frontend/projects/shared-meet-components/src/lib/pages/video-room/video-room.component.ts +++ b/frontend/projects/shared-meet-components/src/lib/pages/video-room/video-room.component.ts @@ -1,4 +1,3 @@ -// import { Location } from '@angular/common'; import { Component, OnDestroy, OnInit } from '@angular/core'; import { FormControl, FormGroup, FormsModule, ReactiveFormsModule, Validators } from '@angular/forms'; import { MatButtonModule } from '@angular/material/button'; diff --git a/frontend/projects/shared-meet-components/src/lib/services/room/room.service.ts b/frontend/projects/shared-meet-components/src/lib/services/room/room.service.ts index fcde9e6..4a78b40 100644 --- a/frontend/projects/shared-meet-components/src/lib/services/room/room.service.ts +++ b/frontend/projects/shared-meet-components/src/lib/services/room/room.service.ts @@ -61,7 +61,7 @@ export class RoomService { * @returns publisherSecret - The secret parameter extracted from the publisher room URL */ async getSecrets(roomId: string): Promise<{ moderatorSecret: string; publisherSecret: string }> { - const { moderatorRoomUrl, publisherRoomUrl } = await this.httpService.getRoom(roomId); + const { moderatorRoomUrl, publisherRoomUrl } = await this.getRoom(roomId); const publisherUrl = new URL(publisherRoomUrl); const publisherSecret = publisherUrl.searchParams.get('secret') || '';