Issue 11427: id values of OrderedCollections have to contain the page number
This commit is contained in:
@@ -42,7 +42,7 @@ class Featured extends BaseModule
|
||||
throw new \Friendica\Network\HTTPException\NotFoundException();
|
||||
}
|
||||
|
||||
$page = $request['page'] ?? null;
|
||||
$page = !empty($request['page']) ? (int)$request['page'] : null;
|
||||
|
||||
$featured = ActivityPub\Transmitter::getFeatured($owner, $page);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user