diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-03-06 15:53:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-06 15:53:45 -0500 |
commit | 16217728afe0f9ff7dcbb7c7b7ead454ccc8705f (patch) | |
tree | 126bc188bd675343ee4e796826177e14f6664094 /ext/js/media | |
parent | a65742a884223451324fcab5cfaeb6ebdfe32ec1 (diff) |
Improve empty reading handling (#1497)
* Handle empty readings earlier in the definition creation process
* Remove empty reading check
* Remove special handling of empty readings
Diffstat (limited to 'ext/js/media')
-rw-r--r-- | ext/js/media/audio-downloader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/media/audio-downloader.js b/ext/js/media/audio-downloader.js index bb8d40a8..68e03d39 100644 --- a/ext/js/media/audio-downloader.js +++ b/ext/js/media/audio-downloader.js @@ -131,7 +131,7 @@ class AudioDownloader { if (htmlReadings.length === 0) { continue; } const htmlReading = dom.getTextContent(htmlReadings[0]); - if (htmlReading && (!reading || reading === htmlReading)) { + if (htmlReading && (reading === expression || reading === htmlReading)) { url = this._normalizeUrl(url, response.url); return [{type: 'url', url}]; } |