Skip to content

Commit

Permalink
fix typo: unmute() => mute(false)
Browse files Browse the repository at this point in the history
  • Loading branch information
huiyiqun committed Oct 29, 2017
1 parent 3102432 commit 6c2b321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/HLSPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ export default {
this.player.load(val);
// workaround for the new strategy of flowplayer
// XXX: the player maybe muted by the user.
this.player.unmute();
this.player.mute(false);
},
ratio(val) {
this.applyRatio();
Expand Down

0 comments on commit 6c2b321

Please sign in to comment.