Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Nov 1, 2024
1 parent 548b0f9 commit ce1d0cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/eu/faircode/email/Core.java
Original file line number Diff line number Diff line change
Expand Up @@ -3938,7 +3938,7 @@ public Object doCommand(IMAPProtocol protocol) throws ProtocolException {

Calendar cal_keep_unread = Calendar.getInstance();
cal_keep_unread.add(Calendar.DAY_OF_MONTH,
delete_unseen ? keep_days * 6 : -Math.max(keep_days * 6, EntityFolder.DEFAULT_KEEP * 6));
delete_unseen ? -keep_days * 6 : -Math.max(keep_days * 6, EntityFolder.DEFAULT_KEEP * 6));
cal_keep_unread.set(Calendar.HOUR_OF_DAY, 0);
cal_keep_unread.set(Calendar.MINUTE, 0);
cal_keep_unread.set(Calendar.SECOND, 0);
Expand Down

0 comments on commit ce1d0cb

Please sign in to comment.