You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.
There are a number of places in api/api.go where ciao-controller is used non-checked type assertions to convert data received from a client into some other type, usually a map[string]interface{}.
There's no guarantee that this conversion will work, if for example the client sends a json document containing a single int. In this case ciao-controller will panic.
The text was updated successfully, but these errors were encountered:
There are a number of places in api/api.go where ciao-controller is used non-checked type assertions to convert data received from a client into some other type, usually a map[string]interface{}.
There's no guarantee that this conversion will work, if for example the client sends a json document containing a single int. In this case ciao-controller will panic.
The text was updated successfully, but these errors were encountered: