mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update NotificationService
This commit is contained in:
parent
07bc5d5c83
commit
2d93bc8b51
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ class NotificationService {
|
||||||
return $ids;
|
return $ids;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getMax($id = false, $start, $limit = 10)
|
public static function getMax($id = false, $start = 0, $limit = 10)
|
||||||
{
|
{
|
||||||
$ids = self::getRankedMaxId($id, $start, $limit);
|
$ids = self::getRankedMaxId($id, $start, $limit);
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ class NotificationService {
|
||||||
return $res->toArray();
|
return $res->toArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getMin($id = false, $start, $limit = 10)
|
public static function getMin($id = false, $start = 0, $limit = 10)
|
||||||
{
|
{
|
||||||
$ids = self::getRankedMinId($id, $start, $limit);
|
$ids = self::getRankedMinId($id, $start, $limit);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue