encoding/json panic recovery

This commit is contained in:
Gennadii Kovalev 2017-03-15 15:30:36 +02:00
parent 1f0997054e
commit 1f2f313d47
1 changed files with 14 additions and 6 deletions

10
send.go
View File

@ -3,8 +3,9 @@ package gosocketio
import (
"encoding/json"
"errors"
"time"
"github.com/graarh/golang-socketio/protocol"
"log"
"time"
)
var (
@ -16,6 +17,13 @@ var (
Send message packet to socket
*/
func send(msg *protocol.Message, c *Channel, args interface{}) error {
//preventing json/encoding "index out of range" panic
defer func() {
if r := recover(); r != nil {
log.Println("socket.io send panic: ", r)
}
}()
if args != nil {
json, err := json.Marshal(&args)
if err != nil {