diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-09 21:00:57 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-09 21:00:57 -0400 |
commit | 0cbf427ab50061b48c9027e63e9ee8a209946d37 (patch) | |
tree | baed9cd4a2016f57710cb6a41b0de04a8ed343f6 /ext | |
parent | 9cd4a52b9e701f47c7ca7b44c52cbcd66b7bcb05 (diff) |
Update argument order
Diffstat (limited to 'ext')
-rw-r--r-- | ext/bg/js/audio-uri-builder.js | 4 | ||||
-rw-r--r-- | ext/bg/js/backend.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/audio-uri-builder.js b/ext/bg/js/audio-uri-builder.js index 80e9cb9a..15cea995 100644 --- a/ext/bg/js/audio-uri-builder.js +++ b/ext/bg/js/audio-uri-builder.js @@ -48,8 +48,8 @@ class AudioUriBuilder { return url; } - async getUri(mode, definition, options) { - const handler = this._getUrlHandlers.get(mode); + async getUri(definition, source, options) { + const handler = this._getUrlHandlers.get(source); if (typeof handler === 'function') { try { return await handler(definition, options); diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index eb88a6c1..adc6f13d 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -515,7 +515,7 @@ class Backend { async _onApiAudioGetUri({definition, source, optionsContext}) { const options = this.getOptions(optionsContext); - return await this.audioUriBuilder.getUri(source, definition, options); + return await this.audioUriBuilder.getUri(definition, source, options); } _onApiScreenshotGet({options}, sender) { @@ -771,7 +771,7 @@ class Backend { } const options = this.getOptions(optionsContext); - return await this.audioUriBuilder.getUri(source, definition, options); + return await this.audioUriBuilder.getUri(definition, source, options); } async _audioInject(definition, fields, sources, optionsContext) { |