]> git.mxchange.org Git - friendica.git/commitdiff
File ending, Error Message
authorMichael <heluecht@pirati.ca>
Wed, 3 Jun 2020 09:40:43 +0000 (09:40 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 3 Jun 2020 09:40:43 +0000 (09:40 +0000)
mod/redir.php

index cb1ca20e0e0f8d2c9bef12f53fbd90882fdf4178..f38b6f7c3ccbe8a21b2325892894969d6c538630 100644 (file)
@@ -48,7 +48,7 @@ function redir_init(App $a) {
        redir_magic($a, $cid, $url);
 
        if (empty($cid)) {
-               throw new \Friendica\Network\HTTPException\NotFoundException(DI::l10n()->t('Contact not found.'));
+               throw new \Friendica\Network\HTTPException\BadRequestException(DI::l10n()->t('Bad Request.'));
        }
 
        $fields = ['id', 'uid', 'nurl', 'url', 'addr', 'name', 'network', 'poll', 'issued-id', 'dfrn-id', 'duplex', 'pending'];
@@ -201,4 +201,4 @@ function redir_check_url(string $contact_url, string $url)
 
        Logger::error('URL check host mismatch', ['contact' => $contact_url, 'url' => $url]);
        throw new \Friendica\Network\HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
-}
\ No newline at end of file
+}