You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/crypto/algorithms/megolm/MXMegolmDecryption.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -136,8 +136,8 @@ internal class MXMegolmDecryption(private val userId: String,
136
136
137
137
throwMXCryptoError.Base(
138
138
MXCryptoError.ErrorType.UNKNOWN_MESSAGE_INDEX,
139
-
throwable.olmException.message ?:"",
140
-
throwable.olmException.message)
139
+
"UNKNOWN_MESSAGE_INDEX",
140
+
null)
141
141
}
142
142
143
143
val reason =String.format(MXCryptoError.OLM_REASON, throwable.olmException.message)
0 commit comments