mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Merge branch 'travis/room-list/setting-diff' into travis/room-list/unread-2
This commit is contained in:
commit
64a811fb03
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ export default class AccountSettingsHandler extends MatrixClientBackedSettingsHa
|
|||
|
||||
const event = cli.getAccountData(eventType);
|
||||
if (!event || !event.getContent()) return null;
|
||||
return event.getContent();
|
||||
return JSON.parse(JSON.stringify(event.getContent())); // clone to prevent mutation
|
||||
}
|
||||
|
||||
_notifyBreadcrumbsUpdate(event) {
|
||||
|
|
Loading…
Reference in a new issue