From 8adc5a9faea2b30390944e01273c6ca0038cf133 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 18 Feb 2022 17:24:55 +0100 Subject: [PATCH] these were public actually --- src/matrix/e2ee/olm/Decryption.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ) {}