diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-09 22:03:56 -0400 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-09 22:03:56 -0400 | 
| commit | 22b218d17238cc003938ef46403596c2183a9c1b (patch) | |
| tree | f6c8158b6974ef164df394429c0058e65f8426ca /ext/fg/js | |
| parent | 8be0ddeb26ec5a7bf8d3044852754c4625a27230 (diff) | |
Pass optionsContext to audioBuildUrl handlers
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/api.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ext/fg/js/api.js b/ext/fg/js/api.js index d0ac649a..a553e514 100644 --- a/ext/fg/js/api.js +++ b/ext/fg/js/api.js @@ -45,8 +45,8 @@ function apiTemplateRender(template, data, dynamic) {      return utilInvoke('templateRender', {data, template, dynamic});  } -function apiAudioGetUrl(definition, source) { -    return utilInvoke('audioGetUrl', {definition, source}); +function apiAudioGetUrl(definition, source, optionsContext) { +    return utilInvoke('audioGetUrl', {definition, source, optionsContext});  }  function apiCommandExec(command) { |