-
Notifications
You must be signed in to change notification settings - Fork 11.1k
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
feat: Ability to set video conf ringing/dialing volume #34926
base: develop
Are you sure you want to change the base?
Conversation
Fixed a bug in the volume control logic where setting a volume to 0 would incorrectly reset it to 100. This happened because the original code used the logical OR operator (||), which treats 0 as a falsy value. The fix replaces || with the nullish coalescing operator (??), which only falls back to the default value when the input is null or undefined, not when it's 0.
Looks like this PR is not ready to merge, because of the following issues:
Please fix the issues and try again If you have any trouble, please check the PR guidelines |
|
🦋 Changeset detectedLatest commit: 4600c1f The changes in this PR will be included in the next version bump. This PR includes changesets to release 37 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #34926 +/- ##
===========================================
- Coverage 59.18% 59.18% -0.01%
===========================================
Files 2821 2821
Lines 68141 68137 -4
Branches 15154 15154
===========================================
- Hits 40327 40324 -3
+ Misses 24979 24978 -1
Partials 2835 2835
Flags with carried forward coverage won't be shown. Click here to find out more. |
apps/meteor/client/views/account/preferences/AccountPreferencesPage.tsx
Outdated
Show resolved
Hide resolved
55b63ff
to
2909c05
Compare
Proposed changes (including videos or screenshots)
Integrated the VOIP
call ringer volume
setting from the user preferences page into Video conf, now both the dialing and ringing audio follow this setting, call ringer volume is relative to master volume so changing the master volume will also affect video conf/VOIP volumes.Demo video (play it from beginning):
https://www.loom.com/share/4ed189c1bc6649e1bc506bec2bb22fb2
New call ringer volume copy:
Issue(s)
Steps to test or reproduce
Further comments
Jira task: CONN-466