1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 02:30:53 +00:00

Update ini.go

change the key to lowercase when set a new key for ini configer
This commit is contained in:
Liaodd 2017-04-10 11:30:23 +08:00 committed by GitHub
parent 323a1c4214
commit d5c03f5b8f

View File

@ -416,7 +416,7 @@ func (c *IniConfigContainer) Set(key, value string) error {
var (
section, k string
sectionKey = strings.Split(key, "::")
sectionKey = strings.Split(strings.ToLower(key), "::")
)
if len(sectionKey) >= 2 {