diff --git a/chrome/content/zotero/xpcom/db.js b/chrome/content/zotero/xpcom/db.js index e11a7aca86..2797988b56 100644 --- a/chrome/content/zotero/xpcom/db.js +++ b/chrome/content/zotero/xpcom/db.js @@ -859,7 +859,7 @@ Zotero.DBConnection.prototype.executeSQLFile = async function (sql) { var statements = this.parseSQLFile(sql); var statement; while (statement = statements.shift()) { - await this.queryAsync(statement); + await this.queryAsync(statement, false, { noCache: true }); } };