Make an empty CharsetReader

This gets around weird errors when the <?xml processing instruction has
things like utf-16 in it. This should maybe be fixed another way later.
This commit is contained in:
Aaron Lindsay 2017-03-13 21:10:43 -04:00
parent b90c3e0dcd
commit 59c8bce519
1 changed files with 3 additions and 0 deletions

3
ofx.go
View File

@ -339,6 +339,9 @@ func (or *Response) Unmarshal(reader io.Reader, xmlVersion bool) error {
decoder.Strict = false
decoder.AutoCloseAfterCharData = ofxLeafElements
}
decoder.CharsetReader = func(charset string, input io.Reader) (io.Reader, error) {
return input, nil
}
if xmlVersion {
// parse the xml header