Define reasonable min and max values

This commit is contained in:
Michael 2022-01-16 15:03:01 +00:00
parent 4724000d06
commit a3173ccb50
7 changed files with 22 additions and 22 deletions

View file

@ -45,10 +45,10 @@ class HomeTimeline extends BaseApi
// params
$count = $this->getRequestValue($request, 'count', 20, 1, 100);
$page = $this->getRequestValue($request, 'page', 1, 1);
$since_id = $this->getRequestValue($request, 'since_id', 0, 1);
$max_id = $this->getRequestValue($request, 'max_id', 0, 1);
$since_id = $this->getRequestValue($request, 'since_id', 0, 0);
$max_id = $this->getRequestValue($request, 'max_id', 0, 0);
$exclude_replies = $this->getRequestValue($request, 'exclude_replies', false);
$conversation_id = $this->getRequestValue($request, 'conversation_id', 0);
$conversation_id = $this->getRequestValue($request, 'conversation_id', 0, 0);
$start = max(0, ($page - 1) * $count);