From 626bb4e700eb57eff3b96c1139135523e3b2a22b Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 4 Apr 2019 13:42:12 -0600 Subject: [PATCH] Update FollowPipeline --- app/Jobs/FollowPipeline/FollowActivityPubDeliver.php | 2 +- app/Jobs/FollowPipeline/FollowPipeline.php | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app/Jobs/FollowPipeline/FollowActivityPubDeliver.php b/app/Jobs/FollowPipeline/FollowActivityPubDeliver.php index 56f22d99..42006b27 100644 --- a/app/Jobs/FollowPipeline/FollowActivityPubDeliver.php +++ b/app/Jobs/FollowPipeline/FollowActivityPubDeliver.php @@ -49,7 +49,7 @@ class FollowActivityPubDeliver implements ShouldQueue $actor = $follow->actor; $target = $follow->target; - if($target->domain == null || $target->inbox_url == null) { + if($target->domain == null || $target->inbox_url == null || !$actor->private_key) { return; } diff --git a/app/Jobs/FollowPipeline/FollowPipeline.php b/app/Jobs/FollowPipeline/FollowPipeline.php index ec6c7ecb..17ad4788 100644 --- a/app/Jobs/FollowPipeline/FollowPipeline.php +++ b/app/Jobs/FollowPipeline/FollowPipeline.php @@ -46,6 +46,10 @@ class FollowPipeline implements ShouldQueue $actor = $follower->actor; $target = $follower->target; + if($target->domain || !$target->private_key) { + return; + } + try { $notification = new Notification(); $notification->profile_id = $target->id;