mirror of
https://github.com/spf13/viper
synced 2024-11-05 20:57:01 +00:00
fix INI saving panics (#1075)
This commit is contained in:
parent
3c7b44f0bc
commit
fb4eafdd97
1 changed files with 1 additions and 1 deletions
2
viper.go
2
viper.go
|
@ -1743,7 +1743,7 @@ func (v *Viper) marshalWriter(f afero.File, configType string) error {
|
|||
if sectionName == "default" {
|
||||
sectionName = ""
|
||||
}
|
||||
cfg.Section(sectionName).Key(keyName).SetValue(v.Get(key).(string))
|
||||
cfg.Section(sectionName).Key(keyName).SetValue(v.GetString(key))
|
||||
}
|
||||
cfg.WriteTo(f)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue