fix: timestamp in queue, add post queue strings

This commit is contained in:
Barış Soner Uşaklı
2020-11-28 22:03:08 -05:00
committed by Julian Lam
parent 833eff4ea4
commit fa4c993e6a
2 changed files with 9 additions and 3 deletions

View File

@@ -8,5 +8,11 @@
"content": "Content",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting."
}
"content-editable": "You can click on individual content to edit before posting.",
"category-editable": "Click on category to edit",
"title-editable": "Click on title to edit",
"reply": "Reply",
"topic": "Topic",
"accept": "Accept",
"reject": "Reject"
}

View File

@@ -48,7 +48,7 @@ topicsAPI.reply = async function (caller, data) {
uid: caller.uid,
req: apiHelpers.buildReqObject(caller), // For IP recording
content: data.content,
timestamp: data.timestamp,
timestamp: Date.now(),
fromQueue: false,
};