mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 23:25:20 +03:00
add timer for typing logic
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
16d2d3d693
commit
50e7af4d04
1 changed files with 4 additions and 0 deletions
|
@ -656,6 +656,10 @@ class ChatActivity :
|
|||
}
|
||||
|
||||
fun sendStartTypingMessage() {
|
||||
if (webSocketInstance == null) {
|
||||
return
|
||||
}
|
||||
|
||||
if (typingTimer == null) {
|
||||
for ((sessionId, participant) in webSocketInstance?.getUserMap()!!) {
|
||||
val ncSignalingMessage = NCSignalingMessage()
|
||||
|
|
Loading…
Reference in a new issue