mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:35:55 +00:00
api/getHeadlines: increase limit to 200
This commit is contained in:
@@ -185,7 +185,7 @@ class API extends Handler {
|
||||
|
||||
$limit = (int)$this->dbh->escape_string($_REQUEST["limit"]);
|
||||
|
||||
if (!$limit || $limit >= 60) $limit = 60;
|
||||
if (!$limit || $limit >= 200) $limit = 200;
|
||||
|
||||
$offset = (int)$this->dbh->escape_string($_REQUEST["skip"]);
|
||||
$filter = $this->dbh->escape_string($_REQUEST["filter"]);
|
||||
|
||||
Reference in New Issue
Block a user