summaryrefslogtreecommitdiff
path: root/js/Feeds.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-24 12:07:25 +0300
committerAndrew Dolgov <[email protected]>2021-02-24 12:07:25 +0300
commit155e4f61253cd5233c5ee44504d696b9402b7419 (patch)
treec4406fd5245cffbe5954b868d6bfc49bfd755b60 /js/Feeds.js
parent96182597c41e2e9a79cbf0d98a5eb140cddc72e3 (diff)
pass a bunch of related arrays properly to backend
Diffstat (limited to 'js/Feeds.js')
-rw-r--r--js/Feeds.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Feeds.js b/js/Feeds.js
index d4bdd01b6..5d64b77ee 100644
--- a/js/Feeds.js
+++ b/js/Feeds.js
@@ -134,7 +134,7 @@ const Feeds = {
this.reloadCurrent();
},
requestCounters: function(feed_ids = null) {
- xhr.json("backend.php", {op: "rpc", method: "getAllCounters", feed_ids: feed_ids, seq: App.next_seq()}, () => {
+ xhr.json("backend.php", {op: "rpc", method: "getAllCounters", "feed_ids[]": feed_ids, seq: App.next_seq()}, () => {
//
});
},