mirror of
https://github.com/friendica/friendica
synced 2024-11-19 14:23:42 +00:00
Exit with an error if profile info isn't available in Module\NoScrape
This commit is contained in:
parent
2e0151bec0
commit
1304e14572
1 changed files with 5 additions and 2 deletions
|
@ -49,11 +49,14 @@ class NoScrape extends BaseModule
|
||||||
$which = $a->user['nickname'];
|
$which = $a->user['nickname'];
|
||||||
} else {
|
} else {
|
||||||
System::jsonError(403, 'Authentication required');
|
System::jsonError(403, 'Authentication required');
|
||||||
exit();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Profile::load($a, $which);
|
Profile::load($a, $which);
|
||||||
|
|
||||||
|
if (empty($a->profile['uid'])) {
|
||||||
|
System::jsonError(404, 'Profile not found');
|
||||||
|
}
|
||||||
|
|
||||||
$json_info = [
|
$json_info = [
|
||||||
'addr' => $a->profile['addr'],
|
'addr' => $a->profile['addr'],
|
||||||
'nick' => $which,
|
'nick' => $which,
|
||||||
|
|
Loading…
Reference in a new issue