mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 14:17:03 +02:00
Use UIDL of msg ID missing
This commit is contained in:
@@ -1938,10 +1938,12 @@ class Core {
|
||||
}
|
||||
}
|
||||
|
||||
if (TextUtils.isEmpty(msgid)) {
|
||||
Log.w(folder.name + " POP no msgid");
|
||||
continue;
|
||||
}
|
||||
if (TextUtils.isEmpty(msgid))
|
||||
if (uidl == null) {
|
||||
Log.w(folder.name + " POP no msgid");
|
||||
continue;
|
||||
} else
|
||||
msgid = uidl;
|
||||
|
||||
try {
|
||||
Log.i(folder.name + " POP sync=" + uidl + "/" + msgid);
|
||||
|
||||
Reference in New Issue
Block a user