Skip to content

Commit f9dc08d

Browse files
Fix for fwding
1 parent e3cb726 commit f9dc08d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

404.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ function doFwd() {
6060
}{% endfor %}
6161
if (gonnaFwd) {
6262
console.log("Forwarding to: " + newURL);
63-
//window.location.replace(newURL);
64-
//document.write('<meta http-equiv="refresh" content="0; url=' + newURL + '">')
63+
window.location.replace(newURL);
64+
document.write('<meta http-equiv="refresh" content="0; url=' + newURL + '">')
6565
} else {
66-
//window.location.replace("/sorry/#" + forwardingURL);
67-
//document.write('<meta http-equiv="refresh" content="0; url=/sorry/#' + forwardingURL + '">')
66+
window.location.replace("/sorry/#" + forwardingURL);
67+
document.write('<meta http-equiv="refresh" content="0; url=/sorry/#' + forwardingURL + '">')
6868
}
6969
}
7070
window.onload = doFwd;

0 commit comments

Comments
 (0)