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

Made thread_root a searchable field of the message table. This can be used to display threads.

This commit is contained in:
Sander Bogaert 2012-10-13 09:28:19 -04:00
parent d27f909600
commit 442805fe62

View File

@ -90,7 +90,7 @@ public interface SearchSpecification extends Parcelable {
SUBJECT("subject"), DATE("date"), UID("uid"), FLAG("flags"),
SENDER("sender_list"), TO("to_list"), CC("cc_list"), FOLDER("folder_id"),
BCC("bcc_list"), REPLY_TO("reply_to_list"), MESSAGE("text_content"),
ATTACHMENT_COUNT("attachment_count"), DELETED("deleted");
ATTACHMENT_COUNT("attachment_count"), DELETED("deleted"), THREAD_ROOT("thread_root");
private String dbName;