1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-06 06:30:18 +00:00

Fixed #1735 Return empty []string

Need return empty []string  if config value is empty.

split `“”` ==> []string{}, Not []string{“”}
This commit is contained in:
ysqi
2016-03-02 22:44:20 +08:00
parent 70e63570f5
commit 8ff74e71cb
6 changed files with 23 additions and 3 deletions

View File

@ -270,7 +270,11 @@ func (c *IniConfigContainer) DefaultString(key string, defaultval string) string
// Strings returns the []string value for a given key.
func (c *IniConfigContainer) Strings(key string) []string {
return strings.Split(c.String(key), ";")
v := c.String(key)
if v == "" {
return []string{}
}
return strings.Split(v, ";")
}
// DefaultStrings returns the []string value for a given key.