From 5916f8c76a0703d63bf37d01154accfb38bf4eed Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Wed, 4 Aug 2021 00:00:50 -0600 Subject: [PATCH] Update Profile model, fix getAudienceInbox method --- app/Profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Profile.php b/app/Profile.php index 2d9ef3fdc..0b2aa9460 100644 --- a/app/Profile.php +++ b/app/Profile.php @@ -277,7 +277,7 @@ class Profile extends Model public function getAudienceInbox($scope = 'public') { - return FollowerService::audience($this->id, $scope); + return FollowerService::audience($this, $scope); } public function circles()