frontend: correct API path in updateRoom method to use ROOMS_API

This commit is contained in:
Carlos Santos 2025-08-04 17:36:08 +02:00
parent 4d76101d1e
commit 400e95203d

View File

@ -207,7 +207,7 @@ export class RoomService {
*/
async updateRoom(roomId: string, preferences: MeetRoomPreferences): Promise<void> {
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;
}