diff --git a/chrome/content/zotero/xpcom/db.js b/chrome/content/zotero/xpcom/db.js index 9cc36b83c..a456b1151 100644 --- a/chrome/content/zotero/xpcom/db.js +++ b/chrome/content/zotero/xpcom/db.js @@ -1216,7 +1216,7 @@ Zotero.DBConnection.prototype._getTypedValue = function (statement, i) { case statement.VALUE_TYPE_FLOAT: return statement.getDouble(i); case statement.VALUE_TYPE_BLOB: - return statement.getBlob(i); + return statement.getBlob(i, {}); } }