mirror of https://github.com/M66B/FairEmail.git
Fixed crash
This commit is contained in:
parent
73b4336da9
commit
5ffb6ae43f
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue