Diaspora: Native reshares only work with toplevel posts

This commit is contained in:
Michael 2020-10-11 21:45:49 +00:00
parent dbdc8c91f6
commit a173bf8eab
1 changed files with 5 additions and 0 deletions

View File

@ -178,6 +178,11 @@ class Post
$shareable = in_array($conv->getProfileOwner(), [0, local_user()]) && $item['private'] != Item::PRIVATE;
$announceable = $shareable && in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::TWITTER]);
// On Diaspora only toplevel posts can be reshared
if ($announceable && ($item['network'] == Protocol::DIASPORA) && ($item['gravity'] != GRAVITY_PARENT)) {
$announceable = false;
}
$edpost = false;
if (local_user()) {