Redirect user to 404 page for non-existing player-settings pages
This commit is contained in:
parent
71642f494f
commit
153fa16bcf
|
@ -24,7 +24,8 @@ window.addEventListener('load', () => {
|
||||||
nameInput.addEventListener('keyup', (event) => updateBaseSetting(event));
|
nameInput.addEventListener('keyup', (event) => updateBaseSetting(event));
|
||||||
nameInput.value = playerSettings.name;
|
nameInput.value = playerSettings.name;
|
||||||
}).catch((error) => {
|
}).catch((error) => {
|
||||||
console.error(error);
|
const url = new URL(window.location.href);
|
||||||
|
window.location.replace(`${url.protocol}//${url.hostname}/page-not-found`);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue