Files
hnsau/templates/https.js
Nathan Woodburn 202455fd2e
Some checks failed
Build Docker / Build Image (push) Failing after 41s
feat: Add docker image
2024-01-11 18:22:20 +11:00

6 lines
161 B
JavaScript

if (location.protocol !== 'https:') {
location.replace(`https:${location.href.substring(location.protocol.length)}`);
}
else{
console.log("Already Https");
}