Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Oct 13, 2024
1 parent 6fafaa7 commit ce9b12b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/eu/faircode/email/EntityOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ static void queue(Context context, EntityMessage message, String name, Object...
if (SEEN.equals(name)) {
boolean seen = jargs.getBoolean(0);
boolean ignore = jargs.optBoolean(1, true);
EntityAccount account = db.account().getAccount(message.id);
EntityAccount account = db.account().getAccount(message.account);
for (EntityMessage similar : db.message().getMessagesBySimilarity(message.account, message.id, message.msgid, message.hash)) {
if ((account != null && !account.isGmail() && !account.isWebDe()) &&
!Objects.equals(message.id, similar.id) &&
Expand Down

0 comments on commit ce9b12b

Please sign in to comment.