diff --git a/website/scripts/status_cafe.ts b/website/scripts/status_cafe.ts index 545607e..a70bcb0 100644 --- a/website/scripts/status_cafe.ts +++ b/website/scripts/status_cafe.ts @@ -37,7 +37,7 @@ interface LatestStatus { h2.innerHTML += " - " + timeAgo(latestEntry.updated); p.style.textAlign = "end"; - p.innerText = latestEntry.status; + p.innerHTML = decodeURIComponent(latestEntry.status); // I trust status.cafe, and myself with the contents of this string. statusElement.appendChild(h2); statusElement.appendChild(p);