-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Bug Report
It looks like the end call and leave call behaviors have been switched by mistake.
Expected Behavior
- Leaving the call should not end it.
- Ending the call should end it.
Actual Behavior
The opposite seems to happen, likely due to the logic being flipped.
Reference
findViewById<MaterialButton>(R.id.leavebtn).apply {
setOnClickListener { zoomSessionViewModel.closeSession(true) }
}
findViewById<MaterialButton>(R.id.endbtn).apply {
setOnClickListener { zoomSessionViewModel.closeSession(false) }
}
Metadata
Metadata
Assignees
Labels
No labels