]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/ActivityPub/Following.php
Use the post language for the language detection / config for quality
[friendica.git] / src / Module / ActivityPub / Following.php
index 7a17edd1d7b2271e4c66154453e4ba34e4b04741..1fc5eefd7b3c3066d5485cf156bab28c65488dcf 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -22,6 +22,7 @@
 namespace Friendica\Module\ActivityPub;
 
 use Friendica\BaseModule;
+use Friendica\Core\System;
 use Friendica\Model\Contact;
 use Friendica\Model\User;
 use Friendica\Protocol\ActivityPub;
@@ -42,12 +43,10 @@ class Following extends BaseModule
                        throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
-               $page = $_REQUEST['page'] ?? null;
+               $page = !empty($request['page']) ? (int)$request['page'] : null;
 
                $following = ActivityPub\Transmitter::getContacts($owner, [Contact::SHARING, Contact::FRIEND], 'following', $page);
 
-               header('Content-Type: application/activity+json');
-               echo json_encode($following);
-               exit();
+               $this->jsonExit($following, 'application/activity+json');
        }
 }