diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-03-25 12:01:20 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-03-25 12:01:20 -0700 |
commit | 83a6c30d0e68496bc7592b3adfa91ae536a487e1 (patch) | |
tree | ee0104442db7467767d072b02383f84a2f262e3e /ext/mixed/js/util.js | |
parent | 20d062329bfcdc0d7c5fd07f48071ae6524f9566 (diff) |
audio improvements
Diffstat (limited to 'ext/mixed/js/util.js')
-rw-r--r-- | ext/mixed/js/util.js | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/ext/mixed/js/util.js b/ext/mixed/js/util.js index 1289455c..4ce60e4f 100644 --- a/ext/mixed/js/util.js +++ b/ext/mixed/js/util.js @@ -85,25 +85,20 @@ function audioInject(definition, fields) { return Promise.resolve(true); } - const audio = { - filename, - skipHash: '7e2c2f954ef6051373ba916f000168dc', - fields: [] - }; - + let usesAudio = false; for (const name in fields) { if (fields[name].includes('{audio}')) { - audio.fields.push(name); + usesAudio = true; + break; } } - if (audio.fields.length === 0) { + if (!usesAudio) { return Promise.resolve(true); } return audioBuildUrl(definition).then(url => { - audio.url = url; - note.audio = audio; + definition.audio = {url, filename}; return true; }).catch(() => false); } |