Fix format handler for bad locale

This commit is contained in:
cyberpwn 2021-08-16 15:48:58 -04:00
parent 9f6cdfcd11
commit 85f0b37b03

View File

@ -874,7 +874,7 @@ public class Form {
DF = new DecimalFormat(form);
return DF.format(i);
return DF.format(i).replaceAll("\\Q,\\E", ".");
}
/**