Remove unnecessary semi-colon
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-21 00:45:36 +02:00
parent 52cba49c90
commit 4113615096

View File

@ -30,7 +30,7 @@ const urls = {
let key = window.location.hash.slice(1);
if (key in urls) {
redir_url = urls[key];
};
}
console.log("Redirecting to " + redir_url + " - off you go!");
window.location = redir_url;