Merge pull request #4603 from annando/pleroma-like
OStatus: Likes from Pleroma will now work
This commit is contained in:
commit
ba03991294
1 changed files with 4 additions and 2 deletions
|
@ -673,9 +673,11 @@ class OStatus
|
||||||
self::fetchConversation($item['conversation-href'], $item['conversation-uri']);
|
self::fetchConversation($item['conversation-href'], $item['conversation-uri']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($item["parent-uri"]) && ($related != '')) {
|
if (isset($item["parent-uri"])) {
|
||||||
if (!dba::exists('item', ['uid' => $importer["uid"], 'uri' => $item['parent-uri']])) {
|
if (!dba::exists('item', ['uid' => $importer["uid"], 'uri' => $item['parent-uri']])) {
|
||||||
|
if ($related != '') {
|
||||||
self::fetchRelated($related, $item["parent-uri"], $importer);
|
self::fetchRelated($related, $item["parent-uri"], $importer);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
logger('Reply with URI '.$item["uri"].' already existed for user '.$importer["uid"].'.', LOGGER_DEBUG);
|
logger('Reply with URI '.$item["uri"].' already existed for user '.$importer["uid"].'.', LOGGER_DEBUG);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue