diff --git a/plugins/Linkback/lib/util.php b/plugins/Linkback/lib/util.php index 16454b5873..cf3f55c5ff 100644 --- a/plugins/Linkback/lib/util.php +++ b/plugins/Linkback/lib/util.php @@ -276,7 +276,10 @@ function linkback_profile($entry, $mf2, $response, $target) { return true; } - $profile = Profile::fromUri($author['url'][0]); + try { + $profile = Profile::fromUri($author['url'][0]); + } catch(UnknownUriException $ex) {} + if(!($profile instanceof Profile)) { $profile = Profile::getKV('profileurl', $author['url'][0]); }