fix(deps): update dependency org.matrix.rustcomponents:sdk-android to v25.5.13 (#4716)
Adapt to SDK changes: - Replace `RoomInfo.isTombstoned: Boolean` with `RoomInfo.tombstone: RoomTombstone?`. - Add `loginHint` parameter to `Client.urlForOidc`. - Remove `ClientBuilder.useEventCachePersistentStorage`, as it's not longer optional.
This commit is contained in:
parent
4f39e09f91
commit
9234de6b8e
10 changed files with 25 additions and 15 deletions
|
|
@ -32,7 +32,7 @@ data class RoomInfo(
|
|||
val isEncrypted: Boolean?,
|
||||
val joinRule: JoinRule?,
|
||||
val isSpace: Boolean,
|
||||
val isTombstoned: Boolean,
|
||||
val tombstone: RoomTombstone?,
|
||||
val isFavorite: Boolean,
|
||||
val canonicalAlias: RoomAlias?,
|
||||
val alternativeAliases: ImmutableList<RoomAlias>,
|
||||
|
|
@ -78,3 +78,8 @@ data class RoomInfo(
|
|||
val aliases: List<RoomAlias>
|
||||
get() = listOfNotNull(canonicalAlias) + alternativeAliases
|
||||
}
|
||||
|
||||
data class RoomTombstone(
|
||||
val body: String,
|
||||
val replacementRoomId: RoomId,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue