9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 18:49:06 +00:00

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", ".");
}
/**