Skip to content

Commit

Permalink
fix(media): removed "mute sound" played on recipient users (#2317)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomBos authored Mar 15, 2022
1 parent 6103b8c commit 14d001b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions components/views/media/Media.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ export default Vue.extend({
const { id, muted } = this.webrtc.remoteTracks.video
if (muted) {
this.$store.dispatch('sounds/playSound', Sounds.DEAFEN)
return null
}
Expand All @@ -92,7 +91,6 @@ export default Vue.extend({
const { id, muted } = this.webrtc.remoteTracks.audio
if (muted) {
this.$store.dispatch('sounds/playSound', Sounds.MUTE)
return null
}
Expand Down

0 comments on commit 14d001b

Please sign in to comment.