Bump Matrix Rust SDK to v0.2.21 and fix conflicts (#2938)
This commit is contained in:
parent
3080dac220
commit
a1adc7476d
5 changed files with 23 additions and 3 deletions
|
|
@ -52,6 +52,10 @@ sealed interface NotificationContent {
|
|||
data class CallInvite(
|
||||
val senderId: UserId,
|
||||
) : MessageLike
|
||||
data class CallNotify(
|
||||
val senderId: UserId,
|
||||
val type: CallNotifyType,
|
||||
) : MessageLike
|
||||
|
||||
data object CallHangup : MessageLike
|
||||
data object CallCandidates : MessageLike
|
||||
|
|
@ -108,3 +112,8 @@ sealed interface NotificationContent {
|
|||
data object SpaceParent : StateEvent
|
||||
}
|
||||
}
|
||||
|
||||
enum class CallNotifyType {
|
||||
RING,
|
||||
NOTIFY
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue