You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you are connected in a voice channel, a bar will show to disconnect from that channel
At the bottom of this component you can see that there is the icon "lucide:phone-outgoing" and on click you will be disconnected from the channel. (At least in the ui in the first place). It means that when you disconnect the user must be removed from the channel in the backend.
To acheive that you just need to emit "leave_channel" in the web socket with that payload:
{channel_id: connectedChannelID,}
Then you should update the focused channel to null in the redux store
Look at what has been already done and don't mind copying.
The text was updated successfully, but these errors were encountered:
Disconnect a voice channel
Need #4
When you are connected in a voice channel, a bar will show to disconnect from that channel
At the bottom of this component you can see that there is the icon "lucide:phone-outgoing" and on click you will be disconnected from the channel. (At least in the ui in the first place). It means that when you disconnect the user must be removed from the channel in the backend.
To acheive that you just need to emit "leave_channel" in the web socket with that payload:
Then you should update the focused channel to null in the redux store
Look at what has been already done and don't mind copying.
The text was updated successfully, but these errors were encountered: