Browse Source

Merge pull request #1573 from pixelfed/frontend-ui-refactor

Update AP job
daniel 6 years ago
parent
commit
982a7e1956
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Jobs/StatusPipeline/StatusActivityPubDeliver.php

+ 1 - 1
app/Jobs/StatusPipeline/StatusActivityPubDeliver.php

@@ -57,7 +57,7 @@ class StatusActivityPubDeliver implements ShouldQueue
 
 
         $audience = $status->profile->getAudienceInbox();
         $audience = $status->profile->getAudienceInbox();
 
 
-        if(empty($audience) || !in_array($status->scope, ['public', 'unlisted', 'private']) {
+        if(empty($audience) || !in_array($status->scope, ['public', 'unlisted', 'private'])) {
             // Return on profiles with no remote followers
             // Return on profiles with no remote followers
             return;
             return;
         }
         }