mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 18:27:43 +00:00
Suppress timeout reporting
This commit is contained in:
parent
ae2ab1aef3
commit
239673c9ac
1 changed files with 3 additions and 1 deletions
|
@ -332,7 +332,8 @@ public class ServiceSynchronize extends LifecycleService {
|
||||||
|
|
||||||
if (!(ex instanceof MailConnectException) &&
|
if (!(ex instanceof MailConnectException) &&
|
||||||
!(ex instanceof FolderClosedException) &&
|
!(ex instanceof FolderClosedException) &&
|
||||||
!(ex instanceof IllegalStateException)) {
|
!(ex instanceof IllegalStateException) &&
|
||||||
|
!(ex instanceof MessagingException && ex.getCause() instanceof SocketTimeoutException)) {
|
||||||
String action;
|
String action;
|
||||||
if (TextUtils.isEmpty(account))
|
if (TextUtils.isEmpty(account))
|
||||||
action = folder;
|
action = folder;
|
||||||
|
@ -340,6 +341,7 @@ public class ServiceSynchronize extends LifecycleService {
|
||||||
action = account;
|
action = account;
|
||||||
else
|
else
|
||||||
action = account + "/" + folder;
|
action = account + "/" + folder;
|
||||||
|
|
||||||
NotificationManager nm = getSystemService(NotificationManager.class);
|
NotificationManager nm = getSystemService(NotificationManager.class);
|
||||||
nm.notify(action, 1, getNotificationError(action, ex).build());
|
nm.notify(action, 1, getNotificationError(action, ex).build());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue