Ensure that values in ini map are unquoted

This commit is contained in:
Ronald
2024-07-21 00:00:47 +01:00
parent fc5ce30f34
commit c3a57853e2

View File

@@ -89,6 +89,8 @@ load_map_from_string :: proc(src: string, allocator: runtime.Allocator, options
}
if allocated {
return v, nil
} else {
return strings.clone(v), nil
}
}
return strings.clone(val)