fix: timestamp in queue, add post queue strings

v1.18.x
Barış Soner Uşaklı 4 years ago
parent 7f5efc3e93
commit 546f58bf1f

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

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

Loading…
Cancel
Save