forked from Hri7566/mpp-server-dev2
Still send chat to user
This commit is contained in:
parent
d2d43007fc
commit
f8b860e2ca
|
@ -68,6 +68,10 @@ class Room extends EventEmitter {
|
||||||
cl.user.id = otheruser.participantId;
|
cl.user.id = otheruser.participantId;
|
||||||
cl.participantId = otheruser.participantId;
|
cl.participantId = otheruser.participantId;
|
||||||
this.connections.push(cl);
|
this.connections.push(cl);
|
||||||
|
cl.sendArray([{
|
||||||
|
m: "c",
|
||||||
|
c: this.chatmsgs.slice(-1 * 32)
|
||||||
|
}])
|
||||||
this.updateCh(cl);
|
this.updateCh(cl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -400,4 +404,4 @@ class Room extends EventEmitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
module.exports = Room;
|
module.exports = Room;
|
||||||
|
|
Loading…
Reference in New Issue