mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Added remark
This commit is contained in:
parent
630744b4e3
commit
2111688e6e
2 changed files with 1 additions and 1 deletions
|
@ -1088,7 +1088,6 @@ class Core {
|
|||
// - messages in inbox have same id as message sent to self
|
||||
// - messages in archive have same id as original
|
||||
if (message == null) {
|
||||
// Will fetch headers within database transaction
|
||||
String msgid = helper.getMessageID();
|
||||
Log.i(folder.name + " searching for " + msgid);
|
||||
for (EntityMessage dup : db.message().getMessageByMsgId(folder.account, msgid)) {
|
||||
|
|
|
@ -84,6 +84,7 @@ public class EntityOperation {
|
|||
static final String ATTACHMENT = "attachment";
|
||||
static final String SYNC = "sync";
|
||||
|
||||
// These operations should be prepared to be executed twice by both the background and foreground sync
|
||||
private static List<String> FOREGROUND = Arrays.asList(KEYWORD, HEADERS, RAW, BODY, ATTACHMENT);
|
||||
|
||||
static void queue(Context context, DB db, EntityMessage message, String name, Object... values) {
|
||||
|
|
Loading…
Reference in a new issue