You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For me loading of the update XML file fails because the byteorder mark removal in the UncSource.GetUpdatesFeed() method doesn't work as expected.
I found a solution at StackOverflow that fixes the issue.
The File.ReadAllText() method should recognize the UTF coding automatically anyway (see MSDN).
…gle bracket '<' of xml document (#123)
* Fix removing bytorder mark not working
see https://stackoverflow.com/a/3282915/542269
* Added test cases for differently encoded XML files
Todo: Check XmlDeclaration for encoding and read file accordingly
For me loading of the update XML file fails because the byteorder mark removal in the
UncSource.GetUpdatesFeed()
method doesn't work as expected.I found a solution at StackOverflow that fixes the issue.
The
File.ReadAllText()
method should recognize the UTF coding automatically anyway (see MSDN).I implemented the fix in my fork. I suggest cherry-picking the commit sonntam/NAppUpdate@4522d37.
The text was updated successfully, but these errors were encountered: