Skip to content

Commit 560290c

Browse files
authored
Merge pull request #4234 from element-hq/renovate/org.matrix.rustcomponents-sdk-android-0.x
Update dependency org.matrix.rustcomponents:sdk-android to v0.2.78
2 parents 3c87fb0 + 08235a7 commit 560290c

File tree

5 files changed

+527
-1
lines changed

5 files changed

+527
-1
lines changed

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jsoup = "org.jsoup:jsoup:1.18.3"
173173
appyx_core = { module = "com.bumble.appyx:core", version.ref = "appyx" }
174174
molecule-runtime = "app.cash.molecule:molecule-runtime:2.0.0"
175175
timber = "com.jakewharton.timber:timber:5.0.1"
176-
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.77"
176+
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.78"
177177
matrix_richtexteditor = { module = "io.element.android:wysiwyg", version.ref = "wysiwyg" }
178178
matrix_richtexteditor_compose = { module = "io.element.android:wysiwyg-compose", version.ref = "wysiwyg" }
179179
sqldelight-driver-android = { module = "app.cash.sqldelight:android-driver", version.ref = "sqldelight" }

libraries/matrix/api/src/main/kotlin/io/element/android/libraries/matrix/api/exception/ClientException.kt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ package io.element.android.libraries.matrix.api.exception
99

1010
sealed class ClientException(message: String) : Exception(message) {
1111
class Generic(message: String) : ClientException(message)
12+
class MatrixApi(val kind: ErrorKind, val code: String, message: String) : ClientException(message)
1213
class Other(message: String) : ClientException(message)
1314
}
1415

0 commit comments

Comments
 (0)