Update Profile model, fix getAudienceInbox method

This commit is contained in:
Daniel Supernault 2021-08-04 00:00:50 -06:00
parent 03199e2f68
commit 5916f8c76a
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -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()