aloof-xylophone-42663
08/11/2025, 2:01 PMtall-airline-16756
08/11/2025, 2:01 PMtall-airline-16756
08/11/2025, 2:02 PMcloseWithHangup()
or closeWithTimeout()
might be ending the call.
• Inactivity Timeout: Calls can end if there’s been a long period of silence or no activity, depending on your settings.
• Programmatic Session Closure: Your code might have logic that explicitly closes the session, which would also cause this.
To figure out exactly what’s going on, you could try:
1. Checking the reason given in the disconnection event.
2. Looking through your server logs for any calls to DeleteRoom
or RemoveParticipant
APIs.
3. Seeing if your code has any explicit session closure logic.
4. Making sure Room.disconnect()
is handled properly on the client side.
5. Adjusting the inactivity timeout settings if you think the call is ending due to silence.
If you want, I’m here to help you dig into any of these areas — just let me know!