www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit d05c5094c73df3403d6460d4d31fc5db21a7a3c7
parent 0ac7a7738182711769826a86d6cfc8a046816a9e
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon, 12 Aug 2013 04:12:23 -0400

Doesn't matter, but cast repo check timestamp to int

Diffstat:
Mchrome/content/zotero/xpcom/schema.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/schema.js b/chrome/content/zotero/xpcom/schema.js @@ -1462,7 +1462,7 @@ Zotero.Schema = new function(){ function _updateDBVersion(schema, version) { _dbVersions[schema] = version; var sql = "REPLACE INTO version (schema,version) VALUES (?,?)"; - return Zotero.DB.queryAsync(sql, [schema, version]); + return Zotero.DB.queryAsync(sql, [schema, parseInt(version)]); }