multiplatform: update type

This commit is contained in:
Evgeny Poberezkin 2025-06-27 22:55:26 +01:00
parent 5d374dac76
commit d210c2aa4b
No known key found for this signature in database
GPG key ID: 494BDDD9A28B577D

View file

@ -521,7 +521,7 @@ object ChatModel {
} }
} }
} }
private fun chatItemBelongsToScope(cInfo: ChatInfo, cItem: ChatItem): Boolean = private fun chatItemBelongsToScope(cInfo: ChatInfo, cItem: ChatItem): Boolean =
when (secondaryContextFilter) { when (secondaryContextFilter) {
null -> null ->
@ -2063,7 +2063,7 @@ enum class MemberCriteria {
@Serializable @Serializable
data class ContactShortLinkData ( data class ContactShortLinkData (
val profile: Profile, val profile: Profile,
val message: String?, val message: MsgContent?,
val business: Boolean val business: Boolean
) )