mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-07 23:55:12 -04:00
Fixed undefined to.
This commit is contained in:
parent
403db74058
commit
97a676cb57
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@ exports.handleCustomObjectMessage = (msg, sessionID) => {
|
|||
socketio.to(sessionID).emit('message', msg);
|
||||
} else {
|
||||
// broadcast to all clients on this pad
|
||||
socketio.broadcast.to(msg.data.payload.padId).emit('message', msg);
|
||||
socketio.to(msg.data.payload.padId).emit('message', msg);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue