Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.0] - Join parameter bbb_hide_presentation_on_join inconsistent #19456

Closed
antonbsa opened this issue Jan 18, 2024 · 2 comments
Closed

[3.0] - Join parameter bbb_hide_presentation_on_join inconsistent #19456

antonbsa opened this issue Jan 18, 2024 · 2 comments
Assignees
Milestone

Comments

@antonbsa
Copy link
Member

Describe the bug
I first noticed when it failed on the Ci run of #19436. Running locally I could randomly reproduce the same behavior. It looks like sometimes it's being applied correctly, and sometimes it doesn't

To Reproduce
Steps to reproduce the behavior:

  1. Create a meeting
  2. Join a moderator with bbb_hide_presentation_on_join=true
  3. Join an attendee with bbb_hide_presentation_on_join=true
  4. Check session state: both users should join with the presentation minimized

Screenshots

Expected behavior:

Screenshot from 2024-01-18 15-24-14

Wrong behavior

Screenshot from 2024-01-18 15-23-36

@JoVictorNunes
Copy link
Collaborator

I think bbb_hide_presentation_on_join doesn't exist anymore. It was replaced by userdata-bbb_hide_presentation_on_join. I've tried out userdata-bbb_hide_presentation_on_join=true locally and it worked fine.

@antonbsa
Copy link
Member Author

Yes, the correct parameter is the one with userdata. I've checked on the test code and was able to confirm that we use the right parameter:

test('Hide Presentation on join @ci @flaky', async ({ browser, context, page }) => {
const customParam = new CustomParameters(browser, context);
await customParam.initModPage(page, true, { joinParameter: c.hidePresentationOnJoin });
await customParam.initUserPage(true, context, { useModMeetingId: true, joinParameter: c.hidePresentationOnJoin });
await customParam.hidePresentationOnJoin();
});

exports.hidePresentationOnJoin = 'userdata-bbb_hide_presentation_on_join=true';


I'll retry to reproduce the reported behavior and comment below any new evidence

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants