From 6342d2260f7e4ebf4ae450587cfeb573870be749 Mon Sep 17 00:00:00 2001 From: Sotiri Bakagiannis Date: Mon, 31 Aug 2020 12:00:14 +0100 Subject: [PATCH] sound/Sound: fix passing of 'log' option to setAttribute --- js/sound/Sound.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/sound/Sound.js b/js/sound/Sound.js index d1abb69..4df0374 100644 --- a/js/sound/Sound.js +++ b/js/sound/Sound.js @@ -156,7 +156,7 @@ export class Sound extends PsychObject { if (sound instanceof Sound) { - this._setAttribute('value', sound.value); + this._setAttribute('value', sound.value, log); if (typeof this._player !== 'undefined') {