mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-14 00:29:35 +01:00
Reduced logging
This commit is contained in:
@@ -1582,7 +1582,7 @@ public class MessageHelper {
|
||||
try {
|
||||
user = IDN.toASCII(user, IDN.ALLOW_UNASSIGNED);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
Log.w(ex);
|
||||
}
|
||||
|
||||
String[] parts = domain.split("\\.");
|
||||
@@ -1590,7 +1590,7 @@ public class MessageHelper {
|
||||
try {
|
||||
parts[p] = IDN.toASCII(parts[p], IDN.ALLOW_UNASSIGNED);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
Log.w(ex);
|
||||
}
|
||||
|
||||
email = user + '@' + TextUtils.join(".", parts);
|
||||
|
||||
Reference in New Issue
Block a user