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:
parent
0e3a06824f
commit
5097c0a537
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue