Fix one case of duplicated content #352

This commit is contained in:
yflory 2019-04-18 15:15:07 +02:00
parent 8550114e7d
commit f4bf032513

View File

@ -1058,7 +1058,7 @@ define([
onConnect: function (wc, sendMessage) {
channel.sendMessage = function (msg, cId, cb) {
// Send to server
sendMessage(msg, cb);
sendMessage(msg, function () {
// Broadcast to other tabs
channel.pushHistory(CpNfWorker.removeCp(msg), /^cp\|/.test(msg));
channel.bcast("PAD_MESSAGE", {
@ -1066,6 +1066,8 @@ define([
msg: CpNfWorker.removeCp(msg),
validateKey: channel.data.validateKey
}, cId);
cb();
});
};
channel.wc = wc;
channel.queue.forEach(function (data) {