We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1728575 commit 6f20c19Copy full SHA for 6f20c19
src/wp/File.cs
@@ -724,10 +724,10 @@ public void readAsBinaryString(string options)
724
readResourceAsText(options);
725
return;
726
}
727
-
+
728
byte[] buffer = readFileBytes(filePath, startPos, endPos, isoFile);
729
- result = System.Text.Encoding.UTF8.GetString(buffer, 0, buffer.Length);
730
+ result = System.Text.Encoding.GetEncoding("iso-8859-1").GetString(buffer, 0, buffer.Length);
731
732
733
DispatchCommandResult(new PluginResult(PluginResult.Status.OK, result), callbackId);
0 commit comments