From 931c190566880f3c7635eee7402061a4558d0f34 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 18 Jul 2019 06:20:54 +0000 Subject: [PATCH] Removed test output --- src/Model/Item.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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; } }