From: Andrew Dolgov Date: Wed, 11 Feb 2009 12:48:03 +0000 (+0300) Subject: offline: download process fixes X-Git-Tag: 1.3.1~41 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e8080ee95c9351300587544dc63e5110d478fb5b;p=tt-rss.git offline: download process fixes --- diff --git a/offline.js b/offline.js index 4b211456..7ffbc39f 100644 --- a/offline.js +++ b/offline.js @@ -760,12 +760,10 @@ function update_offline_data(stage) { if (!stage) stage = 0; if (!db || offline_mode || getInitParam("offline_enabled") != "1") return; - debug("update_offline_data: stage " + stage); - // notify_progress("Updating offline data... (" + stage +")", true); - var query = "backend.php?op=rpc&subop=download&stage=" + stage; - + var query = "backend.php?op=rpc&subop=download"; + var rs = db.execute("SELECT MAX(id), MIN(id) FROM articles"); if (rs.isValidRow() && rs.field(0)) { @@ -774,10 +772,16 @@ function update_offline_data(stage) { query = query + "&cidt=" + offline_dl_max_id; query = query + "&cidb=" + offline_dl_min_id; + + stage = 1; } rs.close(); + debug("update_offline_data: stage " + stage); + + query = query + "&stage=" + stage; + var to_sync = prepare_local_sync_data(); if (to_sync != "") {