Wrong username is identified if query params are present and user doesn't exist (#2838)
Co-authored-by: gitstart <gitstart@users.noreply.github.com> Co-authored-by: Júlio Piubello da Silva Cabral <julio.piubello@gitstart.dev>pull/2066/head^2
parent
7d7c61a1ab
commit
2560b72596
|
@ -15,7 +15,7 @@ export default function Custom404() {
|
||||||
const { t } = useLocale();
|
const { t } = useLocale();
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const username = router.asPath.replace("%20", "-");
|
const username = router.asPath.replace("%20", "-").split(/[?#]/)[0];
|
||||||
|
|
||||||
const links = [
|
const links = [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue