Replacing UTF-8 with Cp437 to resolve encoding issues with accent & other chars

This commit is contained in:
Kota Pardhu
2023-07-05 14:02:39 +05:30
parent 20582dfcf9
commit 6cfcc8b207

View File

@@ -244,7 +244,7 @@ public class ImporterActionExecuter extends ActionExecuterAbstractBase
String encoding = (String) ruleAction.getParameterValue(PARAM_ENCODING);
if (encoding == null)
{
encoding = "UTF-8";
encoding = "Cp437";
}
else
{