Fix for AP posts where the URL don't match

This commit is contained in:
Michael 2020-01-20 22:30:34 +00:00
parent fdd8ba95fc
commit 34b813bbfa
2 changed files with 7 additions and 7 deletions

View file

@ -3742,8 +3742,8 @@ class Item
return $item_id;
}
if (ActivityPub\Processor::fetchMissingActivity($uri)) {
$item_id = self::searchByLink($uri, $uid);
if ($fetched_uri = ActivityPub\Processor::fetchMissingActivity($uri)) {
$item_id = self::searchByLink($fetched_uri, $uid);
} else {
$item_id = Diaspora::fetchByURL($uri);
}