kopia lustrzana https://github.com/friendica/friendica
Merge pull request #3093 from annando/issue-3011
Issue 2364: OStatus: Don't fetch liked contentspull/3095/head
commit
b81a1fde09
|
@ -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) {
|
||||
|
|
Ładowanie…
Reference in New Issue