mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 19:30:55 +00:00
fix testing fail
This commit is contained in:
parent
c372328f88
commit
38188098c5
@ -151,13 +151,13 @@ func (c *JsonConfigContainer) getData(key string) interface{} {
|
|||||||
}
|
}
|
||||||
for _, key := range sectionKey[1:] {
|
for _, key := range sectionKey[1:] {
|
||||||
if v, ok := curValue.(map[string]interface{}); ok {
|
if v, ok := curValue.(map[string]interface{}); ok {
|
||||||
if v2, ok := v[key]; ok {
|
if curValue, ok = v[key]; !ok {
|
||||||
return v2
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return curValue
|
||||||
|
}
|
||||||
if v, ok := c.data[key]; ok {
|
if v, ok := c.data[key]; ok {
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user