Comment to Twitter post is posted to AP instead
authorMichael <heluecht@pirati.ca>
Mon, 28 Dec 2020 06:49:23 +0000 (06:49 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 28 Dec 2020 06:49:23 +0000 (06:49 +0000)
Fixes friendica/friendica#9712

src/Worker/Notifier.php

index 907037d..a8d4f4e 100644 (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;