mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-21 20:49:36 +01:00
Second attempt to fix the issue
Signed-off-by: Dariusz Olszewski <starypatyk@users.noreply.github.com>
This commit is contained in:
parent
d064ad3f65
commit
d31e6de5c4
@ -239,7 +239,6 @@ class ChatController(args: Bundle) :
|
|||||||
val roomId: String
|
val roomId: String
|
||||||
val voiceOnly: Boolean
|
val voiceOnly: Boolean
|
||||||
var isFirstMessagesProcessing = true
|
var isFirstMessagesProcessing = true
|
||||||
var wasDetached: Boolean = false
|
|
||||||
var emojiPopup: EmojiPopup? = null
|
var emojiPopup: EmojiPopup? = null
|
||||||
|
|
||||||
var myFirstMessage: CharSequence? = null
|
var myFirstMessage: CharSequence? = null
|
||||||
@ -252,7 +251,6 @@ class ChatController(args: Bundle) :
|
|||||||
var magicWebSocketInstance: MagicWebSocketInstance? = null
|
var magicWebSocketInstance: MagicWebSocketInstance? = null
|
||||||
|
|
||||||
var lobbyTimerHandler: Handler? = null
|
var lobbyTimerHandler: Handler? = null
|
||||||
val roomJoined: Boolean = false
|
|
||||||
var pastPreconditionFailed = false
|
var pastPreconditionFailed = false
|
||||||
var futurePreconditionFailed = false
|
var futurePreconditionFailed = false
|
||||||
|
|
||||||
@ -1556,16 +1554,13 @@ class ChatController(args: Bundle) :
|
|||||||
|
|
||||||
cancelNotificationsForCurrentConversation()
|
cancelNotificationsForCurrentConversation()
|
||||||
|
|
||||||
Log.d(TAG, "onAttach inConversation: " + inConversation.toString() + " wasDetached: " + wasDetached.toString())
|
Log.d(TAG, "onAttach inConversation: " + inConversation.toString())
|
||||||
if (inConversation) {
|
if (inConversation) {
|
||||||
if (wasDetached) {
|
|
||||||
currentConversation?.sessionId = "0"
|
currentConversation?.sessionId = "0"
|
||||||
wasDetached = false
|
|
||||||
Log.d(TAG, "execute joinRoomWithPassword in onAttach")
|
Log.d(TAG, "execute joinRoomWithPassword in onAttach")
|
||||||
joinRoomWithPassword()
|
joinRoomWithPassword()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private fun cancelReply() {
|
private fun cancelReply() {
|
||||||
binding.messageInputView.findViewById<RelativeLayout>(R.id.quotedChatMessageView)?.visibility = View.GONE
|
binding.messageInputView.findViewById<RelativeLayout>(R.id.quotedChatMessageView)?.visibility = View.GONE
|
||||||
@ -1602,9 +1597,10 @@ class ChatController(args: Bundle) :
|
|||||||
!ApplicationWideCurrentRoomHolder.getInstance().isDialing
|
!ApplicationWideCurrentRoomHolder.getInstance().isDialing
|
||||||
) {
|
) {
|
||||||
ApplicationWideCurrentRoomHolder.getInstance().clear()
|
ApplicationWideCurrentRoomHolder.getInstance().clear()
|
||||||
wasDetached = true
|
if (inConversation) {
|
||||||
leaveRoom()
|
leaveRoom()
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (mentionAutocomplete != null && mentionAutocomplete!!.isPopupShowing) {
|
if (mentionAutocomplete != null && mentionAutocomplete!!.isPopupShowing) {
|
||||||
mentionAutocomplete?.dismissPopup()
|
mentionAutocomplete?.dismissPopup()
|
||||||
@ -1779,11 +1775,6 @@ class ChatController(args: Bundle) :
|
|||||||
} else {
|
} else {
|
||||||
Log.e(TAG, "magicWebSocketInstance or currentConversation were null! Failed to leave the room!")
|
Log.e(TAG, "magicWebSocketInstance or currentConversation were null! Failed to leave the room!")
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isDestroyed && !isBeingDestroyed && !wasDetached) {
|
|
||||||
Log.d(TAG, "leaveRoom - leaveRoom - popCurrentController")
|
|
||||||
router.popCurrentController()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onError(e: Throwable) {
|
override fun onError(e: Throwable) {
|
||||||
@ -1945,7 +1936,6 @@ class ChatController(args: Bundle) :
|
|||||||
fieldMap["lastCommonReadId"] = it
|
fieldMap["lastCommonReadId"] = it
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wasDetached) {
|
|
||||||
var apiVersion = 1
|
var apiVersion = 1
|
||||||
// FIXME this is a best guess, guests would need to get the capabilities themselves
|
// FIXME this is a best guess, guests would need to get the capabilities themselves
|
||||||
if (conversationUser != null) {
|
if (conversationUser != null) {
|
||||||
@ -1961,7 +1951,6 @@ class ChatController(args: Bundle) :
|
|||||||
)
|
)
|
||||||
?.subscribeOn(Schedulers.io())
|
?.subscribeOn(Schedulers.io())
|
||||||
?.observeOn(AndroidSchedulers.mainThread())
|
?.observeOn(AndroidSchedulers.mainThread())
|
||||||
?.takeWhile { observable -> inConversation && !wasDetached }
|
|
||||||
?.subscribe(object : Observer<Response<*>> {
|
?.subscribe(object : Observer<Response<*>> {
|
||||||
override fun onSubscribe(d: Disposable) {
|
override fun onSubscribe(d: Disposable) {
|
||||||
disposableList.add(d)
|
disposableList.add(d)
|
||||||
@ -2002,7 +1991,6 @@ class ChatController(args: Bundle) :
|
|||||||
)
|
)
|
||||||
?.subscribeOn(Schedulers.io())
|
?.subscribeOn(Schedulers.io())
|
||||||
?.observeOn(AndroidSchedulers.mainThread())
|
?.observeOn(AndroidSchedulers.mainThread())
|
||||||
?.takeWhile { observable -> inConversation && !wasDetached }
|
|
||||||
?.subscribe(object : Observer<Response<*>> {
|
?.subscribe(object : Observer<Response<*>> {
|
||||||
override fun onSubscribe(d: Disposable) {
|
override fun onSubscribe(d: Disposable) {
|
||||||
disposableList.add(d)
|
disposableList.add(d)
|
||||||
@ -2034,7 +2022,6 @@ class ChatController(args: Bundle) :
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private fun processMessages(response: Response<*>, isFromTheFuture: Boolean, timeout: Int) {
|
private fun processMessages(response: Response<*>, isFromTheFuture: Boolean, timeout: Int) {
|
||||||
val xChatLastGivenHeader: String? = response.headers().get("X-Chat-Last-Given")
|
val xChatLastGivenHeader: String? = response.headers().get("X-Chat-Last-Given")
|
||||||
|
Loading…
Reference in New Issue
Block a user