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

View file

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