diff options
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/js/background/backend.js | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/ext/js/background/backend.js b/ext/js/background/backend.js index 82457a7e..0fd083bf 100644 --- a/ext/js/background/backend.js +++ b/ext/js/background/backend.js @@ -1717,12 +1717,12 @@ class Backend {      }      async _injectAnkNoteAudio(ankiConnect, timestamp, definitionDetails, details) { -        const {type, expression, reading} = definitionDetails; +        const {type, term, reading} = definitionDetails;          if (              type === 'kanji' || -            typeof expression !== 'string' || +            typeof term !== 'string' ||              typeof reading !== 'string' || -            (expression.length === 0 && reading.length === 0) +            (term.length === 0 && reading.length === 0)          ) {              return null;          } @@ -1734,7 +1734,7 @@ class Backend {              ({data, contentType} = await this._audioDownloader.downloadExpressionAudio(                  sources,                  preferredAudioIndex, -                expression, +                term,                  reading,                  {                      textToSpeechVoice: null, @@ -1804,9 +1804,9 @@ class Backend {                  break;              default:                  { -                    const {reading, expression} = definitionDetails; +                    const {reading, term} = definitionDetails;                      if (reading) { fileName += `_${reading}`; } -                    if (expression) { fileName += `_${expression}`; } +                    if (term) { fileName += `_${term}`; }                  }                  break;          } |