Added searching for notes

This commit is contained in:
M66B
2021-02-28 16:12:48 +01:00
parent 63d747690b
commit 4dc85ee892
6 changed files with 35 additions and 3 deletions

View File

@@ -242,6 +242,7 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
criteria.in_subject,
criteria.in_keywords,
criteria.in_message,
criteria.in_notes,
criteria.with_unseen,
criteria.with_flagged,
criteria.with_hidden,
@@ -647,6 +648,7 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
boolean in_subject = true;
boolean in_keywords = true;
boolean in_message = true;
boolean in_notes = true;
boolean with_unseen;
boolean with_flagged;
boolean with_hidden;
@@ -836,6 +838,7 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
this.in_subject == other.in_subject &&
this.in_keywords == other.in_keywords &&
this.in_message == other.in_message &&
this.in_notes == other.in_notes &&
this.with_unseen == other.with_unseen &&
this.with_flagged == other.with_flagged &&
this.with_hidden == other.with_hidden &&
@@ -859,6 +862,7 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
" subject=" + in_subject +
" keywords=" + in_keywords +
" message=" + in_message +
" notes=" + in_notes +
" unseen=" + with_unseen +
" flagged=" + with_flagged +
" hidden=" + with_hidden +