Major bug fix

This commit is contained in:
Akif9748 2022-09-09 16:30:57 +03:00
parent 74b6b73b72
commit bfac0b16af
1 changed files with 4 additions and 4 deletions

View File

@ -22,9 +22,9 @@ app.get("/:id/", async (req, res) => {
const page = Number(req.query.page || 0);
const thread = await ThreadModel.get(id)
if (thread && (user?.admin || !thread.deleted)) {
thread.count = await thread.messageCount(user?.admin);
thread.pages = Math.ceil(thread.count / 10);
if (thread && (user?.admin || !thread.deleted)) {
thread.views++;
const query = { threadID: id };
if (!user || !user.admin) query.deleted = false;