We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.19 (ini - v1.67.0)
For every save of an ini file, the fields that are an array of rune is set to empty.
ini
type Example struct { Prop1 []rune `ini:"prop.1"` } func Gen(path string) { def := Example{ Prop1: []rune("abc") } file := ini.Empty() ini.ReflectFrom(file, &def) file.SaveTo(path) // current result -> prop.1 = }
Expected result would be to split every character with a symbol of sorts and then set it as the value.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
1.19 (ini - v1.67.0)
Describe the bug
For every save of an
ini
file, the fields that are an array of rune is set to empty.To reproduce
Expected behavior
Expected result would be to split every character with a symbol of sorts and then set it as the value.
Additional context
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: