Merge pull request #8147 from annando/fetch-post

Fix for AP posts where the URL don't match
This commit is contained in:
Philipp 2020-01-20 23:51:07 +01:00 committed by GitHub
commit ae2959c780
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -3759,8 +3759,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);
}