ErrCidNotExist
This commit is contained in:
parent
792925151d
commit
e2287052ea
|
@ -12,7 +12,7 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
PushErrorCidNotExist = errors.New("cid not exist")
|
||||
ErrCidNotExist = errors.New("cid not exist")
|
||||
)
|
||||
|
||||
type GetuiConfig struct {
|
||||
|
@ -202,7 +202,7 @@ func (g *Getui) GetUserStatus(cid string) (*GetuiStatus, error) {
|
|||
return nil, err
|
||||
}
|
||||
if _, ok := result[cid]; !ok {
|
||||
return nil, PushErrorCidNotExist
|
||||
return nil, ErrCidNotExist
|
||||
}
|
||||
|
||||
status := new(GetuiStatus)
|
||||
|
@ -230,7 +230,7 @@ func (g *Getui) GetUserDetail(cid string) (*GetuiDetail, error) {
|
|||
}
|
||||
validCids := cast.ToStringMap(result["validCids"])
|
||||
if _, ok := validCids[cid]; !ok {
|
||||
return nil, PushErrorCidNotExist
|
||||
return nil, ErrCidNotExist
|
||||
}
|
||||
cidDetail := cast.ToStringMap(validCids[cid])
|
||||
|
||||
|
|
Loading…
Reference in New Issue