mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-23 17:41:29 +00:00
digest: support feed catchup
This commit is contained in:
@@ -1029,6 +1029,20 @@
|
||||
return;
|
||||
}
|
||||
|
||||
if ($subop == "catchupFeed") {
|
||||
|
||||
$feed_id = db_escape_string($_REQUEST['feed_id']);
|
||||
$is_cat = db_escape_string($_REQUEST['is_cat']);
|
||||
|
||||
print "<rpc-reply>";
|
||||
|
||||
catchup_feed($link, $feed_id, $is_cat);
|
||||
|
||||
print "</rpc-reply>";
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
print "<rpc-reply><error>Unknown method: $subop</error></rpc-reply>";
|
||||
}
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user