diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/loop-play.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/loop-play.js b/src/loop-play.js index 1e1a75d..7fec995 100644 --- a/src/loop-play.js +++ b/src/loop-play.js @@ -145,10 +145,7 @@ class SoXPlayer extends Player { // You don't get keyboard controls such as seeking or volume adjusting // with SoX, though. - this.process = spawn('play', [ - ...this.playOpts, - file - ]) + this.process = spawn('play', [file]) return promisifyProcess(this.process) } |