Fix / handling of back
This commit is contained in:
parent
63d3bf93f2
commit
37ac45c90a
|
@ -133,7 +133,6 @@ internal class IncomingGossipingRequestManager @Inject constructor(
|
||||||
* It must be called on CryptoThread
|
* It must be called on CryptoThread
|
||||||
*/
|
*/
|
||||||
fun processReceivedGossipingRequests() {
|
fun processReceivedGossipingRequests() {
|
||||||
Timber.v("## GOSSIP processReceivedGossipingRequests()")
|
|
||||||
|
|
||||||
val roomKeyRequestsToProcess = receivedGossipingRequests.toList()
|
val roomKeyRequestsToProcess = receivedGossipingRequests.toList()
|
||||||
receivedGossipingRequests.clear()
|
receivedGossipingRequests.clear()
|
||||||
|
|
|
@ -142,9 +142,15 @@ class VerificationBottomSheetViewModel @AssistedInject constructor(
|
||||||
args: VerificationBottomSheet.VerificationArgs): VerificationBottomSheetViewModel
|
args: VerificationBottomSheet.VerificationArgs): VerificationBottomSheetViewModel
|
||||||
}
|
}
|
||||||
|
|
||||||
fun queryCancel() {
|
fun queryCancel() = withState {
|
||||||
setState {
|
if (it.userThinkItsNotHim) {
|
||||||
copy(userWantsToCancel = true)
|
setState {
|
||||||
|
copy(userThinkItsNotHim = false)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setState {
|
||||||
|
copy(userWantsToCancel = true)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue