X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FOutbox.php;h=14825677910919e92a50833d6866bbeb1b16f5c9;hb=bf82736522ce570b154ec342b9dee49fa9d3a932;hp=27dcd5c1f44b905b51423e6f3cccc3bfe8e43e6b;hpb=10114661d40b740146a66f75771aeddc17c4242e;p=friendica.git diff --git a/src/Module/Outbox.php b/src/Module/Outbox.php index 27dcd5c1f4..1482567791 100644 --- a/src/Module/Outbox.php +++ b/src/Module/Outbox.php @@ -20,12 +20,12 @@ class Outbox extends BaseModule // @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);