mirror of
https://github.com/friendica/friendica
synced 2025-04-24 23:10:11 +00:00
Define reasonable min and max values
This commit is contained in:
parent
4724000d06
commit
a3173ccb50
7 changed files with 22 additions and 22 deletions
|
@ -41,10 +41,10 @@ class Conversation extends BaseApi
|
|||
|
||||
// params
|
||||
$id = $this->parameters['id'] ?? 0;
|
||||
$since_id = $this->getRequestValue($request, 'since_id', 0);
|
||||
$max_id = $this->getRequestValue($request, 'max_id', 0);
|
||||
$count = $this->getRequestValue($request, 'count', 20);
|
||||
$page = $this->getRequestValue($request, 'page', 1);
|
||||
$since_id = $this->getRequestValue($request, 'since_id', 0, 0);
|
||||
$max_id = $this->getRequestValue($request, 'max_id', 0, 0);
|
||||
$count = $this->getRequestValue($request, 'count', 20, 1, 100);
|
||||
$page = $this->getRequestValue($request, 'page', 1, 1);
|
||||
|
||||
$start = max(0, ($page - 1) * $count);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue