1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-14 11:42:23 -05:00

IMAP: another fix for the message uid bump issue

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@917 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-01-20 00:13:56 +00:00
parent c1ffd164aa
commit d83fb699ca

View File

@ -1157,7 +1157,7 @@ public class ExchangeSession {
currentFolder.unreadCount = newFolder.unreadCount; currentFolder.unreadCount = newFolder.unreadCount;
currentFolder.contenttag = newFolder.contenttag; currentFolder.contenttag = newFolder.contenttag;
// keep previous messages for Thunderbird workaround // keep previous messages for Thunderbird workaround
currentFolder.previousMessages = newFolder.messages; currentFolder.previousMessages = currentFolder.messages;
currentFolder.loadMessages(); currentFolder.loadMessages();
return true; return true;
} else { } else {