diff --git a/frontend/projects/shared-meet-components/src/lib/services/room.service.ts b/frontend/projects/shared-meet-components/src/lib/services/room.service.ts index 2301be8..8a8b39c 100644 --- a/frontend/projects/shared-meet-components/src/lib/services/room.service.ts +++ b/frontend/projects/shared-meet-components/src/lib/services/room.service.ts @@ -207,7 +207,7 @@ export class RoomService { */ async updateRoom(roomId: string, preferences: MeetRoomPreferences): Promise { this.log.d('Saving room preferences', preferences); - const path = `${this.INTERNAL_ROOMS_API}/${roomId}`; + const path = `${this.ROOMS_API}/${roomId}`; await this.httpService.putRequest(path, preferences); this.roomPreferences = preferences; }