Update ProfileController, handle permalink redirect bug

This commit is contained in:
Daniel Supernault 2024-03-11 23:26:30 -06:00
parent 481314cd23
commit 75081e609a
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
1 changed files with 2 additions and 0 deletions

View File

@ -172,6 +172,8 @@ class ProfileController extends Controller
$user = $this->getCachedUser($username);
abort_if(!$user, 404);
return redirect($user->url());
}