revert last nonsense changes and fix real issue
This commit is contained in:
parent
6a608f08ed
commit
7ce112471d
@ -139,7 +139,7 @@ class ActivityPubPlugin extends Plugin
|
||||
}
|
||||
try {
|
||||
return Activitypub_notice::create_notice(
|
||||
ActivityPub_explorer::get_profile_from_url($res->attributedTo),
|
||||
ActivityPub_explorer::get_profile_from_url($res['attributedTo']),
|
||||
$res->id,
|
||||
$res->url,
|
||||
$res->content,
|
||||
|
@ -60,7 +60,7 @@ class Activitypub_explorer
|
||||
$actor_profile = $discovery->lookup($url);
|
||||
return $actor_profile[0];
|
||||
} catch (Exception $e) {
|
||||
throw new Exception('Invalid Actor: '.$url);
|
||||
throw new Exception('Invalid Actor.');
|
||||
}
|
||||
unset($discovery);
|
||||
}
|
||||
@ -77,7 +77,7 @@ class Activitypub_explorer
|
||||
public function lookup($url)
|
||||
{
|
||||
if (in_array($url, ACTIVITYPUB_PUBLIC_TO)) {
|
||||
throw new Exception ('Empty Actor URL.');
|
||||
return [];
|
||||
}
|
||||
|
||||
common_debug('ActivityPub Explorer: Started now looking for '.$url);
|
||||
|
Reference in New Issue
Block a user