fixing crash when tapping verification item
- caused by the setArguments being called on the TimelineFragment not the bottomsheet we've just created
This commit is contained in:
parent
d1a77d2eca
commit
4154f036db
1
changelog.d/5540.bugfix
Normal file
1
changelog.d/5540.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fixes crash when tapping the timeline verification surround box instead of the buttons
|
@ -1771,13 +1771,11 @@ class TimelineFragment @Inject constructor(
|
|||||||
}
|
}
|
||||||
is RoomDetailAction.ResumeVerification -> {
|
is RoomDetailAction.ResumeVerification -> {
|
||||||
val otherUserId = data.otherUserId ?: return
|
val otherUserId = data.otherUserId ?: return
|
||||||
VerificationBottomSheet().apply {
|
VerificationBottomSheet.withArgs(
|
||||||
setArguments(VerificationBottomSheet.VerificationArgs(
|
roomId = timelineArgs.roomId,
|
||||||
otherUserId = otherUserId,
|
otherUserId = otherUserId,
|
||||||
verificationId = data.transactionId,
|
transactionId = data.transactionId,
|
||||||
roomId = timelineArgs.roomId
|
).show(parentFragmentManager, "REQ")
|
||||||
))
|
|
||||||
}.show(parentFragmentManager, "REQ")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user