fixed missing period

This commit is contained in:
2025-10-16 00:39:14 -05:00
parent e64058d689
commit 67b6bea737

View File

@ -1,6 +1,6 @@
search = window.location.search.replace("?", "");
fetch("/pages/blog/"+search+"json").then(response => response.json()).then(data => {
fetch("/pages/blog/"+search+".json").then(response => response.json()).then(data => {
postTitle = document.getElementById("postTitle");
postSubTitle = document.getElementById("postSubTitle");
postDate = document.getElementById("postDate");