update_local_feedlist_counters: return unless local DB handle exists

This commit is contained in:
Andrew Dolgov 2009-02-07 11:19:49 +03:00
parent 6161d5cc87
commit b7dbf528f3

View file

@ -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) "+