From 1599ec1f15ef02e5687fbfc4ad15dd55b019ee70 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Tue, 31 Aug 2021 21:42:18 -0400 Subject: Fix dictionary import total progress (#1921) * Fix incorrect total count for final step of dictionary import * Update tests to validate progress args --- ext/js/language/dictionary-importer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/js') diff --git a/ext/js/language/dictionary-importer.js b/ext/js/language/dictionary-importer.js index cd1b796b..98cddf76 100644 --- a/ext/js/language/dictionary-importer.js +++ b/ext/js/language/dictionary-importer.js @@ -126,7 +126,7 @@ class DictionaryImporter { const {media} = await this._resolveAsyncRequirements(requirements, archive); // Add dictionary descriptor - this._progressNextStep(termList.length + termMetaList.length + kanjiList.length + kanjiMetaList.length + tagList.length); + this._progressNextStep(termList.length + termMetaList.length + kanjiList.length + kanjiMetaList.length + tagList.length + media.length); const summary = this._createSummary(dictionaryTitle, version, index, {prefixWildcardsSupported}); dictionaryDatabase.bulkAdd('dictionaries', [summary], 0, 1); -- cgit v1.2.3