Update dependency org.matrix.rustcomponents:sdk-android to v26.05.26 (#6885)
* Update dependency org.matrix.rustcomponents:sdk-android to v26.05.26 * Fix API break * Fix test compilation --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Benoit Marty <benoit@matrix.org>
This commit is contained in:
+2
-1
@@ -44,7 +44,8 @@ class RustPushersService(
|
||||
appDisplayName = setHttpPusherData.appDisplayName,
|
||||
deviceDisplayName = setHttpPusherData.deviceDisplayName,
|
||||
profileTag = setHttpPusherData.profileTag,
|
||||
lang = setHttpPusherData.lang
|
||||
lang = setHttpPusherData.lang,
|
||||
append = setHttpPusherData.append,
|
||||
)
|
||||
}
|
||||
.mapFailure { it.mapClientException() }
|
||||
|
||||
+1
@@ -73,6 +73,7 @@ class FakeFfiClient(
|
||||
deviceDisplayName: String,
|
||||
profileTag: String?,
|
||||
lang: String,
|
||||
append: Boolean,
|
||||
) = Unit
|
||||
|
||||
override suspend fun deletePusher(identifiers: PusherIdentifiers) = Unit
|
||||
|
||||
+3
-1
@@ -48,6 +48,7 @@ private fun aSetHttpPusherData(
|
||||
deviceDisplayName: String = "deviceDisplayName",
|
||||
profileTag: String = "profileTag",
|
||||
lang: String = "lang",
|
||||
append: Boolean = false,
|
||||
) = SetHttpPusherData(
|
||||
pushKey = pushKey,
|
||||
appId = appId,
|
||||
@@ -56,7 +57,8 @@ private fun aSetHttpPusherData(
|
||||
appDisplayName = appDisplayName,
|
||||
deviceDisplayName = deviceDisplayName,
|
||||
profileTag = profileTag,
|
||||
lang = lang
|
||||
lang = lang,
|
||||
append = append,
|
||||
)
|
||||
|
||||
private fun aUnsetHttpPusherData(
|
||||
|
||||
Reference in New Issue
Block a user