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
Currently, genie will READ UTF-8 xml for maps, but will not write it out when saving from the UI. We need to convert it prior to commit to git, or git complains the file format.
I'm pretty sure this is the line that needs changing:
Currently, genie will READ UTF-8 xml for maps, but will not write it out when saving from the UI. We need to convert it prior to commit to git, or git complains the file format.
I'm pretty sure this is the line that needs changing:
Genie4/Mapper/MapForm.cs
Line 919 in f41a5a8
and we just need to tell instead of
System.Text.Encoding.Unicode
to useSystem.Text.Encoding.UTF8
ornull
https://learn.microsoft.com/en-us/dotnet/api/system.xml.xmltextwriter.-ctor?view=net-8.0#system-xml-xmltextwriter-ctor(system-string-system-text-encoding)
The text was updated successfully, but these errors were encountered: