Merge pull request #4988 from matrix-org/uhoreg/fix_encryption_info
check that encryptionInfo.sender is set
This commit is contained in:
commit
e1cf5ecd2f
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ export default createReactClass({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const eventSenderTrust = this.context.checkDeviceTrust(
|
const eventSenderTrust = encryptionInfo.sender && this.context.checkDeviceTrust(
|
||||||
senderId, encryptionInfo.sender.deviceId,
|
senderId, encryptionInfo.sender.deviceId,
|
||||||
);
|
);
|
||||||
if (!eventSenderTrust) {
|
if (!eventSenderTrust) {
|
||||||
|
|
Loading…
Reference in a new issue