From a93a3efd21daf3b686963ead166e02eb4fccf585 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 29 Apr 2023 20:05:32 -0600 Subject: [PATCH] Update Inbox, remove handleCreateActivity logic that rejected posts from accounts without followers --- app/Util/ActivityPub/Inbox.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/Util/ActivityPub/Inbox.php b/app/Util/ActivityPub/Inbox.php index fbde0ac4d..a852e75cc 100644 --- a/app/Util/ActivityPub/Inbox.php +++ b/app/Util/ActivityPub/Inbox.php @@ -199,12 +199,6 @@ class Inbox return; } - if($actor->followers_count == 0) { - if(FollowerService::followerCount($actor->id, true) == 0) { - return; - } - } - if(!isset($activity['to'])) { return; }