[ActivityPub] Fix an unhandled error in onStartGetProfileFromURI

This commit is contained in:
Alexei Sorokin 2019-09-13 20:55:23 +03:00 committed by Diogo Peralta Cordeiro
parent d0e3f9c823
commit 5f87c14bf8

View File

@ -762,8 +762,7 @@ class ActivityPubPlugin extends Plugin
public function onStartGetProfileFromURI($uri, &$profile)
{
try {
$explorer = new Activitypub_explorer();
$profile = $explorer->lookup($uri)[0];
$profile = Activitypub_explorer::get_profile_from_url($uri);
return false;
} catch (Exception $e) {
return true; // It's not an ActivityPub profile as far as we know, continue event handling