Merge pull request #6746 from element-hq/renovate/org.matrix.rustcomponents-sdk-android-26.x
Update dependency org.matrix.rustcomponents:sdk-android to v26.05.7
This commit is contained in:
commit
d50c04a420
3 changed files with 5 additions and 1 deletions
|
|
@ -178,7 +178,7 @@ test_detekt_test = { module = "io.gitlab.arturbosch.detekt:detekt-test", version
|
|||
# https://github.com/matrix-org/matrix-rust-components-kotlin/commits/main/sdk/sdk-android/src/main/kotlin/org/matrix/rustcomponents/sdk/matrix_sdk_ffi.kt
|
||||
# All new features should not be implemented in the pull request that upgrades the version, developers should
|
||||
# only fix API breaks and may add some TODOs.
|
||||
matrix_sdk = "org.matrix.rustcomponents:sdk-android:26.05.6"
|
||||
matrix_sdk = "org.matrix.rustcomponents:sdk-android:26.05.7"
|
||||
|
||||
# Others
|
||||
coil = { module = "io.coil-kt.coil3:coil", version.ref = "coil" }
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@ internal fun aRustNotificationRoomInfo(
|
|||
joinedMembersCount: ULong = 2u,
|
||||
isEncrypted: Boolean? = true,
|
||||
isDirect: Boolean = false,
|
||||
isDm: Boolean = false,
|
||||
joinRule: JoinRule? = null,
|
||||
isSpace: Boolean = false,
|
||||
serviceMembers: List<UserId> = emptyList(),
|
||||
|
|
@ -79,6 +80,7 @@ internal fun aRustNotificationRoomInfo(
|
|||
joinedMembersCount = joinedMembersCount,
|
||||
isEncrypted = isEncrypted,
|
||||
isDirect = isDirect,
|
||||
isDm = isDm,
|
||||
joinRule = joinRule,
|
||||
isSpace = isSpace,
|
||||
serviceMembers = serviceMembers.map { it.value },
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ import org.matrix.rustcomponents.sdk.SpaceRoom
|
|||
internal fun aRustSpaceRoom(
|
||||
roomId: RoomId = A_ROOM_ID,
|
||||
isDirect: Boolean = false,
|
||||
isDm: Boolean = false,
|
||||
canonicalAlias: String? = null,
|
||||
rawName: String? = null,
|
||||
displayName: String = "",
|
||||
|
|
@ -35,6 +36,7 @@ internal fun aRustSpaceRoom(
|
|||
) = SpaceRoom(
|
||||
roomId = roomId.value,
|
||||
isDirect = isDirect,
|
||||
isDm = isDm,
|
||||
canonicalAlias = canonicalAlias,
|
||||
rawName = rawName,
|
||||
displayName = displayName,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue