add an annoying missing space

This commit is contained in:
GCHQ 77703 2018-08-30 01:00:13 +01:00
parent dea6f875d3
commit d70555c666

View File

@ -37,7 +37,7 @@ class PlayAudio extends Operation {
present(input) { present(input) {
const type = input.split(";")[0].split(":")[1]; const type = input.split(";")[0].split(":")[1];
const binary = Utils.convertDataURIToBinary(input); const binary = Utils.convertDataURIToBinary(input);
const blob = new Blob([binary], { type: type}); const blob = new Blob([binary], { type: type });
const src = URL.createObjectURL(blob); const src = URL.createObjectURL(blob);