You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/session/room/summary/RoomSummaryDataSource.kt
+1-9
Original file line number
Diff line number
Diff line change
@@ -200,14 +200,13 @@ internal class RoomSummaryDataSource @Inject constructor(
200
200
queryParams:RoomSummaryQueryParams,
201
201
pagedListConfig:PagedList.Config,
202
202
sortOrder:RoomSortOrder,
203
-
getFlattenedParents:Boolean = false
204
203
): UpdatableLivePageResult {
205
204
val realmDataSourceFactory = monarchy.createDataSourceFactory { realm ->
Copy file name to clipboardExpand all lines: matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/session/room/summary/RoomSummaryUpdater.kt
+6-15
Original file line number
Diff line number
Diff line change
@@ -223,6 +223,7 @@ internal class RoomSummaryUpdater @Inject constructor(
223
223
.sort(RoomSummaryEntityFields.ROOM_ID)
224
224
.findAll().map {
225
225
it.flattenParentIds =null
226
+
it.directParentNames.clear()
226
227
it to emptyList<RoomSummaryEntity>().toMutableSet()
227
228
}
228
229
.toMap()
@@ -350,39 +351,29 @@ internal class RoomSummaryUpdater @Inject constructor(
0 commit comments