1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-22 23:10:19 +00:00

Merge pull request #4274 from flycash/loadCfg

Fix ini Unmarshall method
This commit is contained in:
Ming Deng
2020-10-19 21:51:37 +08:00
committed by GitHub

View File

@ -511,7 +511,7 @@ func (c *IniConfigContainer) Unmarshaler(prefix string, obj interface{}, opt ...
if len(prefix) > 0 {
return errors.New("unsupported prefix params")
}
return mapstructure.Decode(c.data, opt)
return mapstructure.Decode(c.data, obj)
}
func init() {