This commit is contained in:
Alex Yatskov 2017-07-30 17:40:34 -07:00
commit 3475150b2d

View File

@ -189,20 +189,19 @@ class Database {
}; };
const termsLoaded = (title, entries, total, current) => { const termsLoaded = (title, entries, total, current) => {
const rows = []; return this.db.transaction('rw', this.db.terms, function() {
for (const [expression, reading, tags, rules, score, ...glossary] of entries) { for (const [expression, reading, tags, rules, score, ...glossary] of entries) {
rows.push({ this.db.terms.add({
expression, expression,
reading, reading,
tags, tags,
rules, rules,
score, score,
glossary, glossary,
dictionary: title dictionary: title
}); });
} }
}).then(() => {
return this.db.terms.bulkAdd(rows).then(() => {
if (callback) { if (callback) {
callback(total, current); callback(total, current);
} }