backend: Update archived room metadata if exists when updating room preferences
This commit is contained in:
parent
d62added6e
commit
3942dfa0af
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user