From b7dbf528f32349d604f141e19d8c5990684e8bc3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 7 Feb 2009 11:19:49 +0300 Subject: [PATCH] update_local_feedlist_counters: return unless local DB handle exists --- offline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offline.js b/offline.js index 7910bba81..f9ccf2998 100644 --- a/offline.js +++ b/offline.js @@ -806,7 +806,7 @@ function set_feedlist_counter(id, ctr, is_cat) { function update_local_feedlist_counters() { try { - if (!offline_mode) return; + if (!offline_mode || !db) return; /* var rs = db.execute("SELECT feeds.id,COUNT(articles.id) "+ "FROM feeds LEFT JOIN articles ON (feed_id = feeds.id) "+