Skip to content

Commit

Permalink
- handle one more search kind body for searching the IMAP messages (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
haithngn authored and dinhvh committed May 14, 2018
1 parent fce2447 commit a487396
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/imap/MCIMAPSession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3155,6 +3155,11 @@ IndexSet * IMAPSession::search(String * folder, IMAPSearchKind kind, String * se
expr = IMAPSearchExpression::searchContent(searchString);
break;
}
case IMAPSearchKindBody:
{
expr = IMAPSearchExpression::searchBody(searchString);
break;
}
case IMAPSearchKindRead:
{
expr = IMAPSearchExpression::searchRead();
Expand Down

0 comments on commit a487396

Please sign in to comment.