don't use map structure if we're already a map
This commit is contained in:
parent
2ddac95715
commit
8bf7379170
1 changed files with 9 additions and 7 deletions
|
@ -195,14 +195,16 @@ func (ws *cmdHandler) handleMsg(r io.Reader) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
nd := newData(cmd)
|
nd := newData(cmd)
|
||||||
err = mapstructure.Decode(&msgMap, &nd)
|
if _, ok := nd.(map[string]interface{}); !ok {
|
||||||
if err != nil {
|
err := mapstructure.Decode(&msgMap, &nd)
|
||||||
ws.writeError(id, Error{
|
if err != nil {
|
||||||
Code: "invalid_format",
|
ws.writeError(id, Error{
|
||||||
Message: err.Error(),
|
Code: "invalid_format",
|
||||||
})
|
Message: err.Error(),
|
||||||
|
})
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return hand(ws, id, cmd, nd)
|
return hand(ws, id, cmd, nd)
|
||||||
|
|
Loading…
Reference in a new issue