Skip to content

Commit

Permalink
Fix/fix setMuted object destructuring argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Lotphy committed Nov 7, 2023
1 parent c796f84 commit 35f49fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vast_tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export class VASTTracker extends EventEmitter {
* @emits VASTTracker#mute
* @emits VASTTracker#unmute
*/
setMuted(muted, macros = {}) {
setMuted(muted, {macros = {}}) {
if (typeof muted !== 'boolean' || typeof macros !== 'object') {
return;
}
Expand Down

0 comments on commit 35f49fe

Please sign in to comment.