Engine implementation of conversations: #3808

This introduces Geary.Conversations into the API, which scans a Folder and arranges the
messages into threaded conversations.
This commit is contained in:
Jim Nelson 2011-10-21 17:04:33 -07:00
parent 8ab948bce4
commit cd0b926d57
13 changed files with 731 additions and 27 deletions

View file

@ -118,7 +118,7 @@ public class Geary.Sqlite.MessageTable : Geary.Sqlite.Table {
if (row.fields.is_any_set(Geary.Email.Field.REFERENCES)) {
query = locked.prepare(
"UPDATE MessageTable SET message_id=?, in_reply_to=?, reference_ids = ? WHERE id=?");
"UPDATE MessageTable SET message_id=?, in_reply_to=?, reference_ids=? WHERE id=?");
query.bind_string(0, row.message_id);
query.bind_string(1, row.in_reply_to);
query.bind_string(2, row.references);