Fixed crash

This commit is contained in:
M66B 2020-04-26 18:13:14 +02:00
parent 73b4336da9
commit 5ffb6ae43f
1 changed files with 2 additions and 0 deletions

View File

@ -2019,6 +2019,8 @@ public class HtmlHelper {
String[] params = style.split(";");
for (String param : params) {
int semi = param.indexOf(":");
if (semi < 0)
continue;
String key = param.substring(0, semi);
String value = param.substring(semi + 1);
switch (key) {