Prevent crash when opening room permission on conduit homeserver (#312)
* Prevent crash when opening room permission on conduit homeserver * Make fix easier
This commit is contained in:
parent
278fd5bd59
commit
ff9d509137
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ function RoomPermissions({ roomId }) {
|
|||
|
||||
let powerLevel = 0;
|
||||
let permValue = permInfo.parent
|
||||
? permissions[permInfo.parent][permKey]
|
||||
? permissions[permInfo.parent]?.[permKey]
|
||||
: permissions[permKey];
|
||||
|
||||
if (!permValue) permValue = permInfo.default;
|
||||
|
|
Loading…
Reference in a new issue