Fix compilation warning.
This commit is contained in:
parent
9dfb6f2c65
commit
21d6ea1dbb
1 changed files with 2 additions and 2 deletions
|
|
@ -120,9 +120,9 @@ class RustMatrixRoom(
|
||||||
channel.trySend(initial)
|
channel.trySend(initial)
|
||||||
}
|
}
|
||||||
innerRoom.subscribeToTypingNotifications(object : TypingNotificationsListener {
|
innerRoom.subscribeToTypingNotifications(object : TypingNotificationsListener {
|
||||||
override fun call(typingUsers: List<String>) {
|
override fun call(typingUserIds: List<String>) {
|
||||||
channel.trySend(
|
channel.trySend(
|
||||||
typingUsers
|
typingUserIds
|
||||||
.filter { it != sessionData.userId }
|
.filter { it != sessionData.userId }
|
||||||
.map(::UserId))
|
.map(::UserId))
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue