Fix one case of duplicated content #352

pull/1/head
yflory 6 years ago
parent 8550114e7d
commit f4bf032513

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

Loading…
Cancel
Save