www

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

commit b8c0dcebc53a16f98e04a3529cfd99262a44f1e9
parent 904a764b10905753afc3f7169b824e906870ba8e
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed,  8 Jul 2009 05:29:52 +0000

Remove sync expiry


Diffstat:
Mchrome/content/zotero/xpcom/sync.js | 8--------
1 file changed, 0 insertions(+), 8 deletions(-)

diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js @@ -726,14 +726,6 @@ Zotero.Sync.Server = new function () { Zotero.debug("Auto-syncing is disabled until " + Zotero.Date.dateToSQL(_throttleTimeout) + " -- skipping sync"); return false; } - - // Set auto-sync expiry - var expiry = new Date("September 5, 2009 00:00:00"); - if (new Date() > expiry) { - Components.utils.reportError("Build has expired -- auto-sync disabled"); - return false; - } - return this.username && this.password; });