jigasi
jigasi copied to clipboard
Cannot find a way to know from jigasi if a participant/chatroom member has audio muted or not
This Issue tracker is only for reporting bugs and tracking code related issues.
Before posting, please make sure you check community.jitsi.org to see if the same or similar bugs have already been discussed. General questions, installation help, and feature requests can also be posted to community.jitsi.org.
Description
Cannot find a way to know from jigasi if a conference/chat member has audio muted or not
Current behavior
when user mute/unmute its audio, jigasi gets notified with a ChatRoomMemberPresenceChangeEvent
with
- type "MemberUpdated"
- associated sourceRoom (
ChatRoomJabber
) - associated member (
ChatRoomMemberJabber
) - reason
null
but their is not explicit way to retrieve current audio status
Expected Behavior
It would be nice to have a way to get member's audio status (muted: boolean)
Possible Solution
- set an explicit reason such as
audiomuted=true
- add a
boolean isMute();
accessor onChatRoomMemberJabber
, same asCallPeer#isMute()