From a93a3efd21daf3b686963ead166e02eb4fccf585 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 29 Apr 2023 20:05:32 -0600 Subject: [PATCH 1/2] 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; } From 39d39aa5944bd8003ada51368a6475c8d254a42d Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 29 Apr 2023 20:05:57 -0600 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7a1bf33e..988bb6448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ - Update sudo mode checkpoint view design ([091e0b2c](https://github.com/pixelfed/pixelfed/commit/091e0b2c)) - Update ForgotPasswordController, add captcha support, improve security and a new redesigned view ([f6e7ff64](https://github.com/pixelfed/pixelfed/commit/f6e7ff64)) - Update ResetPasswordController, add captcha support, improve security and a new redesigned view ([0ab5b96a](https://github.com/pixelfed/pixelfed/commit/0ab5b96a)) +- Update Inbox, remove handleCreateActivity logic that rejected posts from accounts without followers ([a93a3efd](https://github.com/pixelfed/pixelfed/commit/a93a3efd)) - ([](https://github.com/pixelfed/pixelfed/commit/)) ## [v0.11.5 (2023-03-25)](https://github.com/pixelfed/pixelfed/compare/v0.11.4...v0.11.5)