Browse Source

Update Profile model, fix getAudienceInbox method

Daniel Supernault 3 years ago
parent
commit
5916f8c76a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Profile.php

+ 1 - 1
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()