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",
"posted": "Posted",
"reply-to": "Reply to \"%1\"",
"content-editable": "You can click on individual content to edit before posting.",
"category-editable": "Click to edit the category of this new topic",
"title-editable": "Click to edit the title of this new topic"
"content-editable": "Click on content to edit",
"category-editable": "Click on category to edit",
"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,
req: apiHelpers.buildReqObject(caller), // For IP recording
content: data.content,
timestamp: data.timestamp,
timestamp: Date.now(),
fromQueue: false,
};

Loading…
Cancel
Save