diff options
-rw-r--r-- | play.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/play.js b/play.js index b8b33f1..f7604f8 100644 --- a/play.js +++ b/play.js @@ -170,8 +170,8 @@ async function loopPlay(fn) { while (wavFile) { const nextPromise = downloadNext() - console.log(wavFile) await playFile(wavFile) + await fsp.unlink(wavFile) wavFile = await nextPromise } } |