Changing how data is requested in DEV branch

This commit is contained in:
deadvey
2026-03-05 13:53:10 +00:00
parent 3fab094545
commit 9f5fd261c3
8 changed files with 45 additions and 62 deletions

View File

@@ -13,6 +13,7 @@
<div id="posts">
<% for (let index = posts.length - 1; index >= 0; index--) { %>
<% if (posts[index]["deleted"] != true) { %>
<%- console.log(posts[index]) %>
<%- include('../posts/timeline', {post: posts[index], postID: index, user: users[posts[index].userID], comments: comments[index]}); %>
<% } %>
<% } %>