mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 18:59:01 +00:00
Small improvement
This commit is contained in:
parent
90dfa48ed7
commit
bd1c741f2e
1 changed files with 5 additions and 4 deletions
|
@ -1788,10 +1788,6 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
}
|
||||
|
||||
db.identity().setIdentityState(ident.id, "connected");
|
||||
db.identity().setIdentityError(ident.id, null);
|
||||
|
||||
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
||||
nm.cancel("send", message.identity.intValue());
|
||||
|
||||
// Send message
|
||||
Address[] to = imessage.getAllRecipients();
|
||||
|
@ -1799,6 +1795,11 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
EntityLog.log(this, "Sent via " + ident.host + "/" + ident.user +
|
||||
" to " + TextUtils.join(", ", to));
|
||||
|
||||
db.identity().setIdentityError(ident.id, null);
|
||||
|
||||
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
||||
nm.cancel("send", message.identity.intValue());
|
||||
|
||||
// Append replied/forwarded text
|
||||
if (message.replying != null || message.forwarding != null) {
|
||||
String html = message.read(this);
|
||||
|
|
Loading…
Reference in a new issue