If we get a message from listLocalMessages and we're doing a search,

assume it's for us. Later, we may want to be smarter about that.
This commit is contained in:
Jesse Vincent 2009-12-27 17:20:13 +00:00
parent a736a4267c
commit 21238a3084
1 changed files with 1 additions and 1 deletions

View File

@ -1669,7 +1669,7 @@ public class MessageList
private boolean updateForMe(Account account, String folder)
{
if (account.equals(mAccount) && mFolderName != null && folder.equals(mFolderName))
if (mQueryString != null || (account.equals(mAccount) && mFolderName != null && folder.equals(mFolderName)))
{
return true;
}