Merge pull request #3710 from annando/diaspora-retraction

Diaspora: Sending retractions only worked for posts
This commit is contained in:
Tobias Diekershoff 2017-09-16 21:24:50 +02:00 committed by GitHub
commit af44e96fc9
1 changed files with 8 additions and 1 deletions

View File

@ -3526,7 +3526,14 @@ class Diaspora {
$itemaddr = self::handle_from_contact($item["contact-id"], $item["gcontact-id"]);
$msg_type = "retraction";
$target_type = "Post";
if ($item['id'] == $item['parent']) {
$target_type = "Post";
} elseif ($item["verb"] == ACTIVITY_LIKE) {
$target_type = "Like";
} else {
$target_type = "Comment";
}
$message = array("author" => $itemaddr,
"target_guid" => $item['guid'],