Removed test output

This commit is contained in:
Michael 2019-07-18 06:20:54 +00:00
parent 1553581175
commit 931c190566
1 changed files with 2 additions and 4 deletions

View File

@ -3625,20 +3625,18 @@ class Item extends BaseObject
{ {
$item_id = self::searchByLink($uri, $uid); $item_id = self::searchByLink($uri, $uid);
if (!empty($item_id)) { if (!empty($item_id)) {
echo "a\n";
return $item_id; return $item_id;
} }
echo "b\n";
ActivityPub\Processor::fetchMissingActivity($uri); ActivityPub\Processor::fetchMissingActivity($uri);
/// @todo add Diaspora as well
$item_id = self::searchByLink($uri, $uid); $item_id = self::searchByLink($uri, $uid);
if (!empty($item_id)) { if (!empty($item_id)) {
echo "c\n";
return $item_id; return $item_id;
} }
echo "d\n";
return 0; return 0;
} }
} }