How do I listen on a custom event. For example ``` client.On("CUSTOM_EVENT", func(msg string) { fmt.Printf("on message:%v\n", msg) }) ``` The code above does not work! When the server sends a message to CUSTOM_EVENT, the client immediately loses connection.