diff options
Diffstat (limited to 'ext/bg/js/backend.js')
| -rw-r--r-- | ext/bg/js/backend.js | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 2949cbed..60739aab 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -1581,7 +1581,7 @@ class Backend {              throw new Error('Invalid reading and expression');          } -        const {sources, customSourceUrl} = details; +        const {sources, customSourceUrl, customSourceType} = details;          const data = await this._downloadDefinitionAudio(              sources,              expression, @@ -1589,6 +1589,7 @@ class Backend {              {                  textToSpeechVoice: null,                  customSourceUrl, +                customSourceType,                  binary: true,                  disableCache: true              } |