Mail not showing up in folder due to error: Closes #5538
Message duplication check was failing because it was asking for the wrong column.
This commit is contained in:
parent
41c693dd17
commit
3bc2f6f444
1 changed files with 1 additions and 1 deletions
|
|
@ -663,7 +663,7 @@ private class Geary.ImapDB.Folder : Object, Geary.ReferenceSemantics {
|
|||
|
||||
// look for duplicate in IMAP message properties
|
||||
Db.Statement stmt = cx.prepare(
|
||||
"SELECT message_id FROM MessageTable WHERE internaldate=? AND rfc822_size=?");
|
||||
"SELECT id FROM MessageTable WHERE internaldate=? AND rfc822_size=?");
|
||||
stmt.bind_string(0, internaldate);
|
||||
stmt.bind_int64(1, rfc822_size);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue