mirror of
https://github.com/astaxie/beego.git
synced 2024-11-21 22:00:54 +00:00
Fix ini Unmarshall method
This commit is contained in:
parent
140a4b90a3
commit
93bdf97068
@ -511,7 +511,7 @@ func (c *IniConfigContainer) Unmarshaler(prefix string, obj interface{}, opt ...
|
|||||||
if len(prefix) > 0 {
|
if len(prefix) > 0 {
|
||||||
return errors.New("unsupported prefix params")
|
return errors.New("unsupported prefix params")
|
||||||
}
|
}
|
||||||
return mapstructure.Decode(c.data, opt)
|
return mapstructure.Decode(c.data, obj)
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
Loading…
Reference in New Issue
Block a user