Merge pull request #2674 from JustAMan/fix-attachments-scan

Make variables binding correspond with column names
This commit is contained in:
Bond-009 2020-03-26 15:57:06 +01:00 committed by GitHub
commit 10050a55a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6288,8 +6288,8 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
statement.TryBind("@Codec" + index, attachment.Codec);
statement.TryBind("@CodecTag" + index, attachment.CodecTag);
statement.TryBind("@Comment" + index, attachment.Comment);
statement.TryBind("@FileName" + index, attachment.FileName);
statement.TryBind("@MimeType" + index, attachment.MimeType);
statement.TryBind("@Filename" + index, attachment.FileName);
statement.TryBind("@MIMEType" + index, attachment.MimeType);
}
statement.Reset();