mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Handle duplicate CID
This commit is contained in:
parent
a1b2f99983
commit
1647e3e652
1 changed files with 7 additions and 2 deletions
|
@ -1711,8 +1711,13 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
|
||||
int sequence = 1;
|
||||
for (EntityAttachment attachment : helper.getAttachments()) {
|
||||
Log.i(Helper.TAG, folder.name + " attachment" +
|
||||
" seq=" + sequence + " name=" + attachment.name + " type=" + attachment.type);
|
||||
Log.i(Helper.TAG, folder.name + " attachment seq=" + sequence +
|
||||
" name=" + attachment.name + " type=" + attachment.type + " cid=" + attachment.cid);
|
||||
if (!TextUtils.isEmpty(attachment.cid) &&
|
||||
db.attachment().getAttachment(message.id, attachment.cid) != null) {
|
||||
Log.i(Helper.TAG, "Skipping duplicated CID");
|
||||
continue;
|
||||
}
|
||||
attachment.message = message.id;
|
||||
attachment.sequence = sequence++;
|
||||
attachment.id = db.attachment().insertAttachment(attachment);
|
||||
|
|
Loading…
Reference in a new issue