Remove spaces after removing !important

This commit is contained in:
M66B 2023-08-26 17:44:09 +02:00
parent 389fa78fa9
commit 7bfa680c2b
1 changed files with 1 additions and 1 deletions

View File

@ -695,9 +695,9 @@ public class HtmlHelper {
.trim()
.toLowerCase(Locale.ROOT);
String value = param.substring(colon + 1)
.replace("!important", "")
.trim()
.toLowerCase(Locale.ROOT)
.replace("!important", "")
.replaceAll("\\s+", " ");
kv.put(key, value);
}