remove unneeded quotes

This commit is contained in:
Bruno Windels 2020-10-27 16:20:41 +01:00
parent c9efee77f2
commit e7ff6decbf

View file

@ -39,7 +39,7 @@ export class EncryptedEventTile extends MessageTile {
if (code === "MEGOLM_NO_SESSION") { if (code === "MEGOLM_NO_SESSION") {
return this.i18n`The sender hasn't sent us the key for this message yet.`; return this.i18n`The sender hasn't sent us the key for this message yet.`;
} else { } else {
return decryptionError?.message || this.i18n`"Could not decrypt message because of unknown reason."`; return decryptionError?.message || this.i18n`Could not decrypt message because of unknown reason.`;
} }
} }
} }