backend: Update archived room metadata if exists when updating room preferences

This commit is contained in:
juancarmore 2025-05-11 14:04:58 +02:00
parent d62added6e
commit 3942dfa0af

View File

@ -124,7 +124,10 @@ export class RoomService {
const room = await this.getMeetRoom(roomId);
room.preferences = preferences;
return await this.storageService.saveMeetRoom(room);
await this.storageService.saveMeetRoom(room);
// Update the archived room metadata if it exists
await this.storageService.updateArchivedRoomMetadata(roomId);
return room;
}
/**