Skip to content

Commit b37d8b0

Browse files
committed
Fix bad copy paste breaking 4S restore
1 parent ecd6d5b commit b37d8b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/crypto/secrets/DefaultSharedSecretStorageService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ internal class DefaultSharedSecretStorageService @Inject constructor(
212212
return EncryptedSecretContent(
213213
ciphertext = result.cipherRawBytes.toBase64NoPadding(),
214214
initializationVector = result.initializationVector.toBase64NoPadding(),
215-
mac = result.initializationVector.toBase64NoPadding()
215+
mac = result.mac.toBase64NoPadding()
216216
)
217217
}
218218

0 commit comments

Comments
 (0)