mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-22 15:55:57 +00:00
Similar account
This commit is contained in:
parent
22d4c24804
commit
1e8c119170
1 changed files with 2 additions and 1 deletions
|
@ -299,7 +299,8 @@ class Core {
|
||||||
account.protocol == EntityAccount.TYPE_IMAP) {
|
account.protocol == EntityAccount.TYPE_IMAP) {
|
||||||
JSONArray jnext = new JSONArray(next.args);
|
JSONArray jnext = new JSONArray(next.args);
|
||||||
// Same target
|
// Same target
|
||||||
if (jargs.getLong(0) == jnext.getLong(0) &&
|
if (Objects.equals(op.account, next.account) &&
|
||||||
|
jargs.getLong(0) == jnext.getLong(0) &&
|
||||||
jargs.optBoolean(4) == jnext.optBoolean(4)) {
|
jargs.optBoolean(4) == jnext.optBoolean(4)) {
|
||||||
EntityMessage m = db.message().getMessage(next.message);
|
EntityMessage m = db.message().getMessage(next.message);
|
||||||
if (m != null && m.uid != null)
|
if (m != null && m.uid != null)
|
||||||
|
|
Loading…
Reference in a new issue