1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 22:51:02 +00:00

Added logging

This commit is contained in:
M66B 2021-03-31 10:19:22 +02:00
parent 8bc0701c6a
commit 8b3d984a93

View file

@ -2799,7 +2799,8 @@ public class MessageHelper {
try {
InternetAddress address = new InternetAddress(email);
return address.getAddress();
} catch (AddressException ignored) {
} catch (AddressException ex) {
Log.e(ex);
}
return email;