When I try to decode data from map[interface{}]interface{} into struct with options IgnoreUntaggedFields = true, some fields at struct without mapstructure tag are still filling up. There is happend when key in map and filend name at struct are same.
When I try to decode data from
map[interface{}]interface{}
into struct with optionsIgnoreUntaggedFields = true
, some fields at struct withoutmapstructure
tag are still filling up. There is happend when key in map and filend name at struct are same.Current pull request fix this issue.