This commit is contained in:
deadvey
2025-10-24 13:10:53 +01:00
parent 2d33ce79a8
commit 9f0eb13bb4

View File

@@ -71,7 +71,7 @@ router.get("/post/:post_index", (req, res) => {
if (config.enable_hitcount) { if (config.enable_hitcount) {
data.increment_hitcount(postID) data.increment_hitcount(postID)
} }
else if (typeof post["deleted"] == "undefined" || post["deleted"] == false) { if (typeof post["deleted"] == "undefined" || post["deleted"] == false) {
res.render("pages/post", res.render("pages/post",
{ {
config, config,