]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Outbox.php
Merge pull request #7206 from nupplaphil/issue/6918-php_notices
[friendica.git] / src / Module / Outbox.php
index 41e10757f1231ae90a10138fe49cc09cc4ef722b..14825677910919e92a50833d6866bbeb1b16f5c9 100644 (file)
@@ -5,10 +5,9 @@
 namespace Friendica\Module;
 
 use Friendica\BaseModule;
-use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
 use Friendica\Model\User;
-use Friendica\Util\HTTPSignature;
+use Friendica\Protocol\ActivityPub;
 
 /**
  * ActivityPub Outbox
@@ -19,13 +18,14 @@ class Outbox extends BaseModule
        {
                $a = self::getApp();
 
+               // @TODO: Replace with parameter from router
                if (empty($a->argv[1])) {
-                       System::httpExit(404);
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
                $owner = User::getOwnerDataByNick($a->argv[1]);
                if (empty($owner)) {
-                       System::httpExit(404);
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
                $page = defaults($_REQUEST, 'page', null);