From: Michael Date: Sun, 15 Jan 2017 09:07:57 +0000 (+0000) Subject: Issue 3011 (and others): OStatus: Don't fetch liked contents X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2362e78c8fe8dd53881cf3803d1e706a3a7f1882;p=friendica.git Issue 3011 (and others): OStatus: Don't fetch liked contents --- diff --git a/include/ostatus.php b/include/ostatus.php index ba64f493db..2c4b677a53 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -523,7 +523,9 @@ class ostatus { $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'", intval($importer["uid"]), dbesc($item["parent-uri"])); - if (!$r AND ($related != "")) { + // Only fetch missing stuff if it is a comment or reshare. + if (in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_SHARE)) AND + !dbm::is_result($r) AND ($related != "")) { $reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom"; if ($reply_path != $related) {