mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Add feedback
This commit is contained in:
parent
d638775927
commit
e73eda0156
2 changed files with 8 additions and 8 deletions
|
@ -34,15 +34,15 @@ class Acctlink extends BaseModule
|
|||
public function rawContent()
|
||||
{
|
||||
$addr = trim($_GET['addr'] ?? '');
|
||||
|
||||
if ($addr) {
|
||||
$url = Contact::getByURL($addr)['url'] ?? '';
|
||||
if ($url) {
|
||||
System::externalRedirect($url['url']);
|
||||
exit();
|
||||
}
|
||||
if (!$addr) {
|
||||
throw new NotFoundException('Parameter "addr" is missing or empty');
|
||||
}
|
||||
|
||||
throw new NotFoundException('Parameter "url" is missing');
|
||||
$contact = Contact::getByURL($addr, null, ['url']) ?? '';
|
||||
if (!$contact) {
|
||||
throw new NotFoundException('Contact not found');
|
||||
}
|
||||
|
||||
System::externalRedirect($contact['url']);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue