mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-04 16:45:09 -05:00
Remove references to 'text_content' and 'html_content'
This commit is contained in:
parent
ce862c88f8
commit
743e640d8c
@ -308,8 +308,6 @@ public class LocalMessage extends MimeMessage {
|
||||
cv.putNull("cc_list");
|
||||
cv.putNull("bcc_list");
|
||||
cv.putNull("preview");
|
||||
cv.putNull("html_content");
|
||||
cv.putNull("text_content");
|
||||
cv.putNull("reply_to_list");
|
||||
cv.putNull("message_part_id");
|
||||
|
||||
|
@ -152,8 +152,6 @@ public class EmailProvider extends ContentProvider {
|
||||
private interface InternalMessageColumns extends MessageColumns {
|
||||
public static final String DELETED = "deleted";
|
||||
public static final String EMPTY = "empty";
|
||||
public static final String TEXT_CONTENT = "text_content";
|
||||
public static final String HTML_CONTENT = "html_content";
|
||||
public static final String MIME_TYPE = "mime_type";
|
||||
}
|
||||
|
||||
|
@ -140,8 +140,7 @@ public class SqlQueryBuilder {
|
||||
break;
|
||||
}
|
||||
case MESSAGE_CONTENTS: {
|
||||
columnName = "text_content";
|
||||
break;
|
||||
throw new RuntimeException("Searching in message bodies is currently not supported");
|
||||
}
|
||||
case REPLY_TO: {
|
||||
columnName = "reply_to_list";
|
||||
|
Loading…
Reference in New Issue
Block a user