summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/feedlist.js b/feedlist.js
index 4f5c8d775..1cd784524 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -168,6 +168,10 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
query = query + "&omode=flc";
}
+ if (!async_counters_work) {
+ query = query + "&csync=true";
+ }
+
debug(query);
var container = document.getElementById("headlinesInnerContainer");
@@ -517,7 +521,7 @@ function request_counters_real() {
new Ajax.Request(query, {
onComplete: function(transport) {
try {
- all_counters_callback2(transport);
+ all_counters_callback2(transport, true);
} catch (e) {
exception_error("viewfeed/getcounters", e);
}