Fixes nil pointer dereference error
Cannot unmarshal into nil struct
This commit is contained in:
parent
4a4bdcb83b
commit
35fd6796b1
@ -27,8 +27,8 @@ func New(id, detail string, code int32) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func Parse(err string) *Error {
|
func Parse(err string) *Error {
|
||||||
var e *Error
|
e := new(Error)
|
||||||
errr := json.Unmarshal([]byte(err), &e)
|
errr := json.Unmarshal([]byte(err), e)
|
||||||
if errr != nil {
|
if errr != nil {
|
||||||
e.Detail = err
|
e.Detail = err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user