mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:15:55 +00:00
pass a bunch of related arrays properly to backend
This commit is contained in:
@@ -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()}, () => {
|
||||
//
|
||||
});
|
||||
},
|
||||
|
||||
@@ -150,19 +150,19 @@ const Headlines = {
|
||||
|
||||
if (ops.tmark.length != 0)
|
||||
promises.push(xhr.post("backend.php",
|
||||
{op: "rpc", method: "markSelected", ids: ops.tmark.toString(), cmode: 2}));
|
||||
{op: "rpc", method: "markSelected", "ids[]": ops.tmark, cmode: 2}));
|
||||
|
||||
if (ops.tpub.length != 0)
|
||||
promises.push(xhr.post("backend.php",
|
||||
{op: "rpc", method: "publishSelected", ids: ops.tpub.toString(), cmode: 2}));
|
||||
{op: "rpc", method: "publishSelected", "ids[]": ops.tpub, cmode: 2}));
|
||||
|
||||
if (ops.read.length != 0)
|
||||
promises.push(xhr.post("backend.php",
|
||||
{op: "rpc", method: "catchupSelected", ids: ops.read.toString(), cmode: 0}));
|
||||
{op: "rpc", method: "catchupSelected", "ids[]": ops.read, cmode: 0}));
|
||||
|
||||
if (ops.unread.length != 0)
|
||||
promises.push(xhr.post("backend.php",
|
||||
{op: "rpc", method: "catchupSelected", ids: ops.unread.toString(), cmode: 1}));
|
||||
{op: "rpc", method: "catchupSelected", "ids[]": ops.unread, cmode: 1}));
|
||||
|
||||
const scores = Object.keys(ops.rescore);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user