Fix incorrect return value from toMap function

This commit is contained in:
Michael Nicholls 2020-01-30 23:03:48 +00:00
parent adef00064e
commit 119ef50471

View file

@ -364,5 +364,5 @@ func toMap(src interface{}) map[string]string {
for k, v := range set {
dst[k] = fmt.Sprint(v)
}
return nil
return dst
}