1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 19:52:17 -05:00

Fixes Issue 1314

This commit is contained in:
Daniel Applebaum 2010-03-13 04:49:15 +00:00
parent 983c171357
commit bbedf7b9e0

View File

@ -1598,8 +1598,11 @@ public class MessageList
if (updateForMe(account, folder)) if (updateForMe(account, folder))
{ {
MessageInfoHolder holder = getMessage(oldUid); MessageInfoHolder holder = getMessage(oldUid);
holder.uid = newUid; if (holder != null)
holder.message.setUid(newUid); {
holder.uid = newUid;
holder.message.setUid(newUid);
}
} }
} }