diff --git a/src/matrix/e2ee/olm/Decryption.ts b/src/matrix/e2ee/olm/Decryption.ts index 06ad18dc..9db198be 100644 --- a/src/matrix/e2ee/olm/Decryption.ts +++ b/src/matrix/e2ee/olm/Decryption.ts @@ -306,8 +306,8 @@ class SenderKeyDecryption { class DecryptionChanges { constructor( private readonly senderKeyDecryptions: SenderKeyDecryption[], - private readonly results: DecryptionResult[], - private readonly errors: DecryptionError[], + public readonly results: DecryptionResult[], + public readonly errors: DecryptionError[], private readonly account: Account, private readonly lock: ILock ) {}