1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Log font weight errors

This commit is contained in:
M66B 2020-04-25 20:35:45 +02:00
parent 815344ed53
commit b0835b8cdd

View file

@ -1072,7 +1072,8 @@ public class HtmlHelper {
try {
return Integer.parseInt(value);
} catch (NumberFormatException ignored) {
} catch (NumberFormatException ex) {
Log.w(ex);
}
return null;