1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2966 Chats | Fix | Misc. fixes (#2452)

This commit is contained in:
Evgenii Kozlov 2025-05-24 14:12:11 +02:00 committed by GitHub
parent e685e4ea53
commit 202cea41f6
Signed by: github
GPG key ID: B5690EEEBB952194
7 changed files with 20 additions and 6 deletions

View file

@ -11,6 +11,11 @@ interface ChatEventRemoteChannel {
class Default(
private val channel: ChatEventRemoteChannel
) : ChatEventChannel {
override fun subscribe(subscribe: Id): Flow<List<Event.Command.Chats>> {
return channel.subscribe(subscribe)
}
override fun observe(chat: Id): Flow<List<Event.Command.Chats>> {
return channel.observe(chat)
}