mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-23 21:43:17 +00:00
Update SiteController, return 404 for users attempting to view their own Follow Intent
This commit is contained in:
parent
19cb81cf26
commit
8e9b544f50
1 changed files with 1 additions and 0 deletions
|
@ -116,6 +116,7 @@ class SiteController extends Controller
|
|||
]);
|
||||
$profile = Profile::whereUsername($request->input('user'))->firstOrFail();
|
||||
$user = $request->user();
|
||||
abort_if($profile->id == $user->profile_id, 404);
|
||||
$following = $user != null ? FollowerService::follows($user->profile_id, $profile->id) : false;
|
||||
return view('site.intents.follow', compact('profile', 'user', 'following'));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue