'muted' always returns false

Description
Whenever I query the ‘muted’ property of a user/participant, it is always returning ‘false’. It is returning false even before the ‘startAudio’ is called.

Which Web Video SDK version?
1.1.7

To Reproduce(If applicable)
You can get the list of all users and print the status:

   users = _client.getAllUser();
    for (i=0; i<users.length; ++i) {
      console.log('id = ' + users[i].userId + ', muted = ' + users[i].muted);
    }

Device (please complete the following information):

  • Device: Macbook Pro
  • OS: Ubuntu 18.04 and Mac OS Monterey
  • Browser: Chromium and Safari
  • Browser Version Chromium 97, Safari 15.2

Is this a bug or is there any other variable/method that I have to use?

Thank you.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.