|
|
@ -61,7 +61,7 @@ class UndoSharePipeline implements ShouldQueue
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(config_cache('federation.activitypub.enabled') == false) {
|
|
|
|
if(config('app.env') !== 'production' || config_cache('federation.activitypub.enabled') == false) {
|
|
|
|
return $status->delete();
|
|
|
|
return $status->delete();
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return $this->remoteAnnounceDeliver();
|
|
|
|
return $this->remoteAnnounceDeliver();
|
|
|
@ -71,6 +71,7 @@ class UndoSharePipeline implements ShouldQueue
|
|
|
|
public function remoteAnnounceDeliver()
|
|
|
|
public function remoteAnnounceDeliver()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if(config('app.env') !== 'production' || config_cache('federation.activitypub.enabled') == false) {
|
|
|
|
if(config('app.env') !== 'production' || config_cache('federation.activitypub.enabled') == false) {
|
|
|
|
|
|
|
|
$status->delete();
|
|
|
|
return 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|