[Release] Fix reading of cached room device setting values (#8495)

This commit is contained in:
Michael Telatynski
2022-05-04 17:38:03 +01:00
committed by GitHub
parent 9e55dda8ca
commit 5ccde97414
2 changed files with 36 additions and 1 deletions

View File

@@ -69,7 +69,7 @@ export default class RoomDeviceSettingsHandler extends AbstractLocalStorageSetti
}
private read(key: string): any {
return this.getItem(key);
return this.getObject(key);
}
private getKey(settingName: string, roomId: string): string {