send. allow "nil" arguments to send, emit, broadcast
This commit is contained in:
parent
79023de6ce
commit
ec90f20e1f
12
send.go
12
send.go
|
@ -16,12 +16,14 @@ var (
|
||||||
Send message packet to socket
|
Send message packet to socket
|
||||||
*/
|
*/
|
||||||
func send(msg *protocol.Message, c *Channel, args interface{}) error {
|
func send(msg *protocol.Message, c *Channel, args interface{}) error {
|
||||||
json, err := json.Marshal(&args)
|
if args != nil {
|
||||||
if err != nil {
|
json, err := json.Marshal(&args)
|
||||||
return err
|
if err != nil {
|
||||||
}
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
msg.Args = string(json)
|
msg.Args = string(json)
|
||||||
|
}
|
||||||
|
|
||||||
command, err := protocol.Encode(msg)
|
command, err := protocol.Encode(msg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue