Update Profile model
This commit is contained in:
parent
e1a3e26644
commit
ca5d964f5f
1 changed files with 5 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App;
|
||||
|
||||
use Auth, Cache, Storage;
|
||||
use Auth, Cache, DB, Storage;
|
||||
use App\Util\Lexer\PrettyNumber;
|
||||
use Pixelfed\Snowflake\HasSnowflakePrimary;
|
||||
use Illuminate\Database\Eloquent\{Model, SoftDeletes};
|
||||
|
@ -69,7 +69,7 @@ class Profile extends Model
|
|||
if($this->domain == null && $this->user->settings->show_profile_following_count == false) {
|
||||
return 0;
|
||||
}
|
||||
$count = $this->following()->count();
|
||||
$count = DB::table('followers')->select('following_id')->where('following_id', $this->id)->count();
|
||||
if($this->following_count != $count) {
|
||||
$this->following_count = $count;
|
||||
$this->save();
|
||||
|
@ -277,7 +277,7 @@ class Profile extends Model
|
|||
|
||||
public function getAudienceInbox($scope = 'public')
|
||||
{
|
||||
return FollowerService::audience($this, $scope);
|
||||
return FollowerService::audience($this->id, $scope);
|
||||
}
|
||||
|
||||
public function circles()
|
||||
|
|
Loading…
Reference in a new issue