diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index e06789b5..ca04e92b 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -132,7 +132,7 @@ class ProfileController extends Controller $blocked = $this->blockedProfileCheck($profile); $check = $this->privateProfileCheck($profile, null); if($check || $blocked) { - return view('profile.private', compact('user')); + return redirect($profile->url()); } } $items = $profile->statuses()->whereIn('visibility',['public', 'unlisted'])->orderBy('created_at', 'desc')->take(10)->get();