Update ProfileController, handle permalink redirect bug

pull/5005/head
Daniel Supernault 2024-03-11 23:26:30 -06:00
rodzic 481314cd23
commit 75081e609a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 23740873EE6F76A1
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

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