db/API.js: no need to parseInt(time) here

We are already sure that time is an int
This commit is contained in:
muxator 2019-03-07 00:02:24 +01:00
parent b34fc2de2b
commit 10172af199

View file

@ -527,7 +527,7 @@ exports.appendChatMessage = function(padID, text, authorID, time, callback)
var padMessage = require("ep_etherpad-lite/node/handler/PadMessageHandler.js");
// save chat message to database and send message to all connected clients
padMessage.sendChatMessageToPadClients(parseInt(time), authorID, text, padID);
padMessage.sendChatMessageToPadClients(time, authorID, text, padID);
callback();
}