From 18ccc25575f531435c19f135df89e22ff6c6da86 Mon Sep 17 00:00:00 2001 From: yostyle Date: Fri, 15 Dec 2023 12:25:29 +0100 Subject: [PATCH] fix lint --- .../matrix/android/sdk/internal/crypto/RustCryptoService.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/crypto/RustCryptoService.kt b/matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/crypto/RustCryptoService.kt index 1dc4ca665f..d743631264 100755 --- a/matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/crypto/RustCryptoService.kt +++ b/matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/crypto/RustCryptoService.kt @@ -500,8 +500,8 @@ internal class RustCryptoService @Inject constructor( olmMachine.decryptRoomEvent(event) } catch (mxCryptoError: MXCryptoError) { if (mxCryptoError is MXCryptoError.Base && ( - mxCryptoError.errorType == MXCryptoError.ErrorType.UNKNOWN_INBOUND_SESSION_ID - || mxCryptoError.errorType == MXCryptoError.ErrorType.UNKNOWN_MESSAGE_INDEX)) { + mxCryptoError.errorType == MXCryptoError.ErrorType.UNKNOWN_INBOUND_SESSION_ID || + mxCryptoError.errorType == MXCryptoError.ErrorType.UNKNOWN_MESSAGE_INDEX)) { Timber.v("Try to perform a lazy migration from legacy store") /** * It's a bit hacky, check how this can be better integrated with rust?