diff options
author | xuri <xuri.me@gmail.com> | 2022-01-15 00:06:34 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-01-15 00:06:34 +0800 |
commit | 236ee61d201e45b1fe33a58b290adb7ee32d3488 (patch) | |
tree | 3ae21f34e373aef6f89acceeea897590e43c2637 /lib.go | |
parent | 67127883dddf6a923d12231da8b089861bcca28c (diff) |
This closes #1119, style parsing issue fixed
Diffstat (limited to 'lib.go')
-rw-r--r-- | lib.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -473,6 +473,8 @@ func (avb *attrValBool) UnmarshalXML(d *xml.Decoder, start xml.StartElement) err return nil } } + defaultVal := true + avb.Val = &defaultVal return nil } |