Add https hack until official fix available

This commit is contained in:
lostinlight 2018-07-09 06:23:08 +03:00
parent 9b99111ba6
commit c321114156
1 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,13 @@
<div class="container <%= contType %>"><%- body %></div>
<h1><%=page.title%></h1>
</main>
<!-- temporary https redirect hack -->
<script>
const host = "fediverse.party";
if ((host == window.location.host || "www." + host == window.location.host ) && (window.location.protocol != "https:")) {
window.location.protocol = "https";
}
</script>
<!-- temporary gitlab pages redirect hack -->
<script>
const url = window.location.href;