mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-22 14:59:33 +00:00
Update FollowerController
This commit is contained in:
parent
de49171027
commit
d4c347ffa9
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class FollowerController extends Controller
|
||||||
protected function handleFollowRequest($item)
|
protected function handleFollowRequest($item)
|
||||||
{
|
{
|
||||||
$user = Auth::user()->profile;
|
$user = Auth::user()->profile;
|
||||||
$target = Profile::where('id', '!=', $user->id)->findOrFail($item);
|
$target = Profile::where('id', '!=', $user->id)->whereNull('status')->findOrFail($item);
|
||||||
$private = (bool) $target->is_private;
|
$private = (bool) $target->is_private;
|
||||||
$blocked = UserFilter::whereUserId($target->id)
|
$blocked = UserFilter::whereUserId($target->id)
|
||||||
->whereFilterType('block')
|
->whereFilterType('block')
|
||||||
|
|
Loading…
Reference in a new issue