1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-07 10:40:11 -05:00

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

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) {