Simplifying the siteInfo handling
authorspf13 <steve.francia@gmail.com>
Wed, 28 May 2014 22:37:59 +0000 (18:37 -0400)
committerspf13 <steve.francia@gmail.com>
Wed, 28 May 2014 22:37:59 +0000 (18:37 -0400)
hugolib/site.go

index 26185142e8493d7493164655dac396938429c2dc..54f90b392dec762a359e2db4ec1c9c29f4c0b394 100644 (file)
@@ -260,18 +260,7 @@ func (s *Site) initialize() (err error) {
 }
 
 func (s *Site) initializeSiteInfo() {
-       paramsV, ok := viper.Get("Params").(map[interface{}]interface{})
-       // Warning: viper.Get(map_item) returns map[interface{}]interface{}
-       // even if .SetDefault called with a map[string]interface{}
-       if !ok {
-               paramsV = make(map[interface{}]interface{})
-       }
-       params := make(map[string]interface{}, len(paramsV))
-       for k, v := range paramsV {
-               if s, ok := k.(string); ok {
-                       params[s] = v
-               }
-       }
+       params := viper.GetStringMap("Params")
 
        permalinks := make(PermalinkOverrides)
        for k, v := range viper.GetStringMapString("Permalinks") {