diff --git a/js/markdown.js b/js/markdown.js index 22164cd..234513a 100644 --- a/js/markdown.js +++ b/js/markdown.js @@ -36,7 +36,7 @@ function filterPost(text) { text = htmlesc(text) text = newlineify(text) text = urlify(text) - text = filterReplies(text) + //text = filterReplies(text) text = filterMentions(text) text = crossout(text) text = boldify(text) diff --git a/js/posts.js b/js/posts.js index f395893..f2a83ea 100644 --- a/js/posts.js +++ b/js/posts.js @@ -115,7 +115,7 @@ async function createPost(username,text,time,specialtext,postid,isbot,reply_id) newP.innerHTML += `` if(reply_id != 0) { - const reply_obj = await fetch(`/getPost?id=${reply_id}`) + const reply_obj = await fetch(`/api/getPost?id=${reply_id}`) const reply_username = decodeURIComponent(reply_obj.post_user_name) const reply_username_text = document.createTextNode(reply_username) const reply_text = decodeURIComponent(reply_obj.post_text)