Skip to content

Commit b9942cc

Browse files
authored
Merge pull request #3249 from element-hq/renovate/org.matrix.rustcomponents-sdk-android-0.x
Update dependency org.matrix.rustcomponents:sdk-android to v0.2.35
2 parents bcb4415 + ba123cc commit b9942cc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jsoup = "org.jsoup:jsoup:1.18.1"
163163
appyx_core = { module = "com.bumble.appyx:core", version.ref = "appyx" }
164164
molecule-runtime = "app.cash.molecule:molecule-runtime:2.0.0"
165165
timber = "com.jakewharton.timber:timber:5.0.1"
166-
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.34"
166+
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.35"
167167
matrix_richtexteditor = { module = "io.element.android:wysiwyg", version.ref = "wysiwyg" }
168168
matrix_richtexteditor_compose = { module = "io.element.android:wysiwyg-compose", version.ref = "wysiwyg" }
169169
sqldelight-driver-android = { module = "app.cash.sqldelight:android-driver", version.ref = "sqldelight" }

libraries/matrix/impl/src/test/kotlin/io/element/android/libraries/matrix/impl/roomlist/RoomSummaryListProcessorTest.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ private fun aRustRoomInfo(
221221
numUnreadMessages: ULong = 0uL,
222222
numUnreadNotifications: ULong = 0uL,
223223
numUnreadMentions: ULong = 0uL,
224+
pinnedEventIds: List<String> = listOf(),
224225
) = RoomInfo(
225226
id = id,
226227
displayName = displayName,
@@ -249,7 +250,8 @@ private fun aRustRoomInfo(
249250
isMarkedUnread = isMarkedUnread,
250251
numUnreadMessages = numUnreadMessages,
251252
numUnreadNotifications = numUnreadNotifications,
252-
numUnreadMentions = numUnreadMentions
253+
numUnreadMentions = numUnreadMentions,
254+
pinnedEventIds = pinnedEventIds,
253255
)
254256

255257
class FakeRoomListItem(

0 commit comments

Comments
 (0)