File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
libraries/matrix/impl/src/test/kotlin/io/element/android/libraries/matrix/impl/roomlist Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ jsoup = "org.jsoup:jsoup:1.18.1"
163
163
appyx_core = { module = " com.bumble.appyx:core" , version.ref = " appyx" }
164
164
molecule-runtime = " app.cash.molecule:molecule-runtime:2.0.0"
165
165
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 "
167
167
matrix_richtexteditor = { module = " io.element.android:wysiwyg" , version.ref = " wysiwyg" }
168
168
matrix_richtexteditor_compose = { module = " io.element.android:wysiwyg-compose" , version.ref = " wysiwyg" }
169
169
sqldelight-driver-android = { module = " app.cash.sqldelight:android-driver" , version.ref = " sqldelight" }
Original file line number Diff line number Diff line change @@ -221,6 +221,7 @@ private fun aRustRoomInfo(
221
221
numUnreadMessages : ULong = 0uL,
222
222
numUnreadNotifications : ULong = 0uL,
223
223
numUnreadMentions : ULong = 0uL,
224
+ pinnedEventIds : List <String > = listOf(),
224
225
) = RoomInfo (
225
226
id = id,
226
227
displayName = displayName,
@@ -249,7 +250,8 @@ private fun aRustRoomInfo(
249
250
isMarkedUnread = isMarkedUnread,
250
251
numUnreadMessages = numUnreadMessages,
251
252
numUnreadNotifications = numUnreadNotifications,
252
- numUnreadMentions = numUnreadMentions
253
+ numUnreadMentions = numUnreadMentions,
254
+ pinnedEventIds = pinnedEventIds,
253
255
)
254
256
255
257
class FakeRoomListItem (
You can’t perform that action at this time.
0 commit comments