Lower case with root locale

This commit is contained in:
M66B
2021-05-01 16:55:00 +02:00
parent 23121ac172
commit 9cba293ca2
6 changed files with 12 additions and 10 deletions

View File

@@ -1739,7 +1739,7 @@ public class HtmlHelper {
for (int i = 0; i < param.length; i++) {
String[] kv = param[i].split("=");
if (kv.length == 2) {
switch (kv[0].replace(" ", "").toLowerCase()) {
switch (kv[0].replace(" ", "").toLowerCase(Locale.ROOT)) {
case "user-scalable":
kv[1] = "yes";
param[i] = TextUtils.join("=", kv);