Keep existing thread ID

This commit is contained in:
M66B 2022-07-23 15:26:42 +02:00
parent 7407a05d28
commit 008469569e
1 changed files with 2 additions and 1 deletions

View File

@ -3983,7 +3983,8 @@ class Core {
if (dup.uid == null) {
Log.i(folder.name + " set uid=" + uid);
dup.uid = uid;
dup.thread = thread;
if (dup.thread == null)
dup.thread = thread;
if (EntityFolder.SENT.equals(folder.type) &&
(folder.auto_add == null || !folder.auto_add)) {