1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

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

View File

@ -1669,7 +1669,7 @@ public class MessageList
private boolean updateForMe(Account account, String folder) 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; return true;
} }