summaryrefslogtreecommitdiff
path: root/js/Feeds.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-24 10:01:39 +0300
committerAndrew Dolgov <[email protected]>2021-02-24 10:01:39 +0300
commit6ea1430a04b5df6dc01dc43a3354a00cd61c9174 (patch)
tree2992593d6ed37fc15cdc06c744bc8a529a8f22a6 /js/Feeds.js
parente6505b7d83b8e25b507923feb86dc10e7954ed58 (diff)
no special counter handling for catchupAll
Diffstat (limited to 'js/Feeds.js')
-rw-r--r--js/Feeds.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/Feeds.js b/js/Feeds.js
index e40d31087..d4bdd01b6 100644
--- a/js/Feeds.js
+++ b/js/Feeds.js
@@ -395,8 +395,7 @@ const Feeds = {
Notify.progress("Marking all feeds as read...");
- xhr.post("backend.php", {op: "feeds", method: "catchupAll"}, () => {
- this.requestCounters();
+ xhr.json("backend.php", {op: "feeds", method: "catchupAll"}, () => {
this.reloadCurrent();
});