-
Notifications
You must be signed in to change notification settings - Fork 96
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
Add skipLobby to params #1730
Add skipLobby to params #1730
Conversation
Signed-off-by: Timo K <toger5@hotmail.de>
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## livekit #1730 +/- ##
========================================
Coverage 29.96% 29.96%
========================================
Files 47 47
Lines 1879 1879
Branches 329 329
========================================
Hits 563 563
Misses 1272 1272
Partials 44 44
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One question. Also, we should make sure to create a companion PR for Element Web adding this URL parameter, otherwise this will break EC integration on web
The semantics of the preload parameter are changing as detailed here, meaning we now have to additionally specify skipLobby to get the desired behavior out of Element Call: element-hq/element-call#1730
The semantics of the preload parameter are changing as detailed here, meaning we now have to additionally specify skipLobby to get the desired behavior out of Element Call: element-hq/element-call#1730
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, and I've created the Element Web companion PR so this can be unblocked
…11749) The semantics of the preload parameter are changing as detailed here, meaning we now have to additionally specify skipLobby to get the desired behavior out of Element Call: element-hq/element-call#1730
Signed-off-by: Timo K <toger5@hotmail.de>
Previously preload automatically was skipping the lobby. In our effort to make the url params more specific instead of hiding a bunch of changes behind one parameter that is named based on usage (
->embed
confineToRoom
...->preload
preload
+skipLobby
).Before preload was also skipping the lobby. Now its two different things so we can also skip the lobby without using preload (most likely for the mobile 1:1 call experience).
fixes: #1734