Skip to content

Commit

Permalink
Remove duplicate semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
goldfire committed Jan 20, 2018
1 parent 7a89f39 commit 01744ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/howler.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1353,7 +1353,7 @@

// Change the playback rate.
if (self._webAudio && sound._node && sound._node.bufferSource) {
sound._node.bufferSource.playbackRate.setValueAtTime(rate, Howler.ctx.currentTime);;
sound._node.bufferSource.playbackRate.setValueAtTime(rate, Howler.ctx.currentTime);
} else if (sound._node) {
sound._node.playbackRate = rate;
}
Expand Down

0 comments on commit 01744ac

Please sign in to comment.