From: Michael Date: Thu, 18 Jul 2019 06:20:54 +0000 (+0000) Subject: Removed test output X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=931c190566880f3c7635eee7402061a4558d0f34;p=friendica.git Removed test output --- diff --git a/src/Model/Item.php b/src/Model/Item.php index 941000e543..ddfc5e0b35 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -3625,20 +3625,18 @@ class Item extends BaseObject { $item_id = self::searchByLink($uri, $uid); if (!empty($item_id)) { -echo "a\n"; return $item_id; } -echo "b\n"; ActivityPub\Processor::fetchMissingActivity($uri); + /// @todo add Diaspora as well + $item_id = self::searchByLink($uri, $uid); if (!empty($item_id)) { -echo "c\n"; return $item_id; } -echo "d\n"; return 0; } }