diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-23 23:23:08 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-07 14:34:35 -0500 |
commit | b862035fbc20449786a14f3f0b82828b8eb73c5c (patch) | |
tree | 2d806305704946a7a916f69ab9f35da17d8a00c3 /ext/bg/js/database.js | |
parent | 1a0a345ae745781b6fb1d066df334b641a9cc00b (diff) |
Show info about whether a dictionary supports wildcard searches
Diffstat (limited to 'ext/bg/js/database.js')
-rw-r--r-- | ext/bg/js/database.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ext/bg/js/database.js b/ext/bg/js/database.js index c6717560..2f624189 100644 --- a/ext/bg/js/database.js +++ b/ext/bg/js/database.js @@ -503,7 +503,8 @@ class Database { termMetaDataLoaded, kanjiDataLoaded, kanjiMetaDataLoaded, - tagDataLoaded + tagDataLoaded, + details ); } @@ -520,7 +521,8 @@ class Database { termMetaDataLoaded, kanjiDataLoaded, kanjiMetaDataLoaded, - tagDataLoaded + tagDataLoaded, + details ) { const zip = await JSZip.loadAsync(archive); @@ -538,7 +540,8 @@ class Database { title: index.title, revision: index.revision, sequenced: index.sequenced, - version: index.format || index.version + version: index.format || index.version, + prefixWildcardsSupported: !!details.prefixWildcardsSupported }; await indexDataLoaded(summary); |