Merge pull request #4988 from matrix-org/uhoreg/fix_encryption_info

check that encryptionInfo.sender is set
This commit is contained in:
Hubert Chathi
2020-07-15 14:31:38 -04:00
committed by GitHub

View File

@@ -333,7 +333,7 @@ export default createReactClass({
return;
}
const eventSenderTrust = this.context.checkDeviceTrust(
const eventSenderTrust = encryptionInfo.sender && this.context.checkDeviceTrust(
senderId, encryptionInfo.sender.deviceId,
);
if (!eventSenderTrust) {