Comment to Twitter post is posted to AP instead

Fixes friendica/friendica#9712
pull/9713/head
Michael 2020-12-28 06:49:23 +00:00
parent 97bbe3ae96
commit 152daaabfb
1 changed files with 5 additions and 0 deletions

View File

@ -766,6 +766,11 @@ class Notifier
*/
private static function activityPubDelivery($cmd, array $target_item, array $parent, array $thr_parent, $priority, $created, $owner)
{
// Don't deliver via AP when the starting post isn't from a federated network
if (!in_array($parent['network'], Protocol::FEDERATED)) {
return 0;
}
// Don't deliver via AP when the starting post is delivered via Diaspora
if ($parent['network'] == Protocol::DIASPORA) {
return 0;