Commit c43e3d66 authored by fud's avatar fud

fix type mismatch error

parent f6c508f1
......@@ -294,7 +294,7 @@ func (b *beegoAppConfig) String(key string) string {
func (b *beegoAppConfig) Strings(key string) []string {
if v := b.innerConfig.Strings(BConfig.RunMode + "::" + key); v[0] != "" {
return v[0]
return v
}
return b.innerConfig.Strings(key)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment