Fix: Likes from OStatus got the gravity of comments
This commit is contained in:
parent
a23a16bb04
commit
9a9541809b
|
@ -341,7 +341,7 @@ class OStatus
|
||||||
$header["type"] = "remote";
|
$header["type"] = "remote";
|
||||||
$header["wall"] = 0;
|
$header["wall"] = 0;
|
||||||
$header["origin"] = 0;
|
$header["origin"] = 0;
|
||||||
$header["gravity"] = GRAVITY_PARENT;
|
$header["gravity"] = GRAVITY_COMMENT;
|
||||||
|
|
||||||
$first_child = $doc->firstChild->tagName;
|
$first_child = $doc->firstChild->tagName;
|
||||||
|
|
||||||
|
@ -683,9 +683,9 @@ class OStatus
|
||||||
}
|
}
|
||||||
|
|
||||||
$item["type"] = 'remote-comment';
|
$item["type"] = 'remote-comment';
|
||||||
$item["gravity"] = GRAVITY_COMMENT;
|
|
||||||
} else {
|
} else {
|
||||||
$item["parent-uri"] = $item["uri"];
|
$item["parent-uri"] = $item["uri"];
|
||||||
|
$item["gravity"] = GRAVITY_PARENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($item['author-link'] != '') && !empty($item['protocol'])) {
|
if (($item['author-link'] != '') && !empty($item['protocol'])) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user