mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 18:59:01 +00:00
Fixed UNIQUE constraint failed
This commit is contained in:
parent
28047e3f05
commit
0cad384e6d
1 changed files with 1 additions and 2 deletions
|
@ -2409,8 +2409,7 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
" folder=" + dfolder.type + ":" + dup.folder + "/" + folder.type + ":" + folder.id +
|
||||
" msgid=" + dup.msgid + " thread=" + dup.thread);
|
||||
|
||||
if (dup.folder.equals(folder.id) ||
|
||||
(EntityFolder.OUTBOX.equals(dfolder.type) && EntityFolder.SENT.equals(folder.type))) {
|
||||
if (dup.folder.equals(folder.id)) {
|
||||
String thread = helper.getThreadId(uid);
|
||||
Log.i(folder.name + " found as id=" + dup.id + "/" +
|
||||
" uid=" + dup.uid + "/" + uid +
|
||||
|
|
Loading…
Reference in a new issue