From d70555c6663e2783691727149efcf098f183e5a0 Mon Sep 17 00:00:00 2001 From: GCHQ 77703 Date: Thu, 30 Aug 2018 01:00:13 +0100 Subject: [PATCH] add an annoying missing space --- src/core/operations/PlayAudio.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/PlayAudio.mjs b/src/core/operations/PlayAudio.mjs index 6b950129..99979c78 100644 --- a/src/core/operations/PlayAudio.mjs +++ b/src/core/operations/PlayAudio.mjs @@ -37,7 +37,7 @@ class PlayAudio extends Operation { present(input) { const type = input.split(";")[0].split(":")[1]; const binary = Utils.convertDataURIToBinary(input); - const blob = new Blob([binary], { type: type}); + const blob = new Blob([binary], { type: type }); const src = URL.createObjectURL(blob);