mirror of
https://github.com/nextcloud/talk-android
synced 2025-02-01 04:09:21 +00:00
Merge pull request #3768 from nextcloud/issue-3734-handle-crash
Fix crash on sendStopTypingMessage
This commit is contained in:
commit
6709fefd09
@ -2114,7 +2114,8 @@ class ChatActivity :
|
||||
typingTimer = null
|
||||
typedWhileTypingTimerIsRunning = false
|
||||
|
||||
for ((sessionId, _) in webSocketInstance?.getUserMap()!!) {
|
||||
val concurrentSafeHashMap = webSocketInstance?.getUserMap()!!
|
||||
for ((sessionId, _) in concurrentSafeHashMap) {
|
||||
val ncSignalingMessage = NCSignalingMessage()
|
||||
ncSignalingMessage.to = sessionId
|
||||
ncSignalingMessage.type = TYPING_STOPPED_SIGNALING_MESSAGE_TYPE
|
||||
|
Loading…
Reference in New Issue
Block a user