Make search also search the message contents

This commit is contained in:
cketti 2012-10-30 19:24:19 +01:00
parent 0baffd05c8
commit b0ef68dfed
1 changed files with 1 additions and 0 deletions

View File

@ -146,6 +146,7 @@ public class MessageList extends K9FragmentActivity implements MessageListFragme
mSearch.or(new SearchCondition(Searchfield.SENDER, Attribute.CONTAINS, query));
mSearch.or(new SearchCondition(Searchfield.SUBJECT, Attribute.CONTAINS, query));
mSearch.or(new SearchCondition(Searchfield.MESSAGE_CONTENTS, Attribute.CONTAINS, query));
Bundle appData = getIntent().getBundleExtra(SearchManager.APP_DATA);
if (appData != null) {