1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-27 10:17:18 +00:00

Fixed crash

This commit is contained in:
M66B 2020-04-26 18:13:14 +02:00
parent 73b4336da9
commit 5ffb6ae43f

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) {