1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 14:41:08 +00:00

Keep existing uid

This commit is contained in:
M66B 2018-12-08 08:42:37 +01:00
parent 0e3a06824f
commit 5097c0a537

View file

@ -2114,9 +2114,11 @@ public class ServiceSynchronize extends LifecycleService {
if (dup.folder.equals(folder.id) || outbox) {
String thread = helper.getThreadId(uid);
Log.i(Helper.TAG, folder.name + " found as id=" + dup.id + "/" + uid +
Log.i(Helper.TAG, folder.name + " found as id=" + dup.id + "/" +
" uid=" + dup.uid + "/" + uid +
" msgid=" + msgid + " thread=" + thread);
dup.folder = folder.id; // From outbox
if (dup.uid == null)
dup.uid = uid;
dup.msgid = msgid;
dup.thread = thread;