-
Notifications
You must be signed in to change notification settings - Fork 4
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(calling): join/leave sound #762
Conversation
Download the app installers for this pull request: |
@@ -194,6 +195,7 @@ export class CallRoom { | |||
let stream = await VoiceRTCInstance.getLocalStream() | |||
log.debug(`Sending local stream ${stream} to ${peer}`) | |||
room.addStream(stream, peer) | |||
playSound(Sounds.Joined) |
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.
Kevin, I think we can move it to other place, because here, is just when person is really inside the room, and not when person accept call
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.
i think this is fine because its when the user then is actually inside the room. accepting the call doesnt mean at that moment the user is actually in the call
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.
I agree, you are correct.
Label added for Lucas's comment |
What this PR does 📖