diff options
| author | Vasily <just.one.man@yandex.ru> | 2020-03-26 17:40:28 +0300 |
|---|---|---|
| committer | Vasily <just.one.man@yandex.ru> | 2020-03-26 17:40:28 +0300 |
| commit | 0d2a355c00f9309631953af675aeb8e47b32575e (patch) | |
| tree | f499ec824101b910e3ecc946e122cbcc89351b7b | |
| parent | 622106467e61a5c314a90e80e73e71027f34a564 (diff) | |
Make variables binding correspond with column names
| -rw-r--r-- | Emby.Server.Implementations/Data/SqliteItemRepository.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs index 0eb396af4..3f2d33de2 100644 --- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs +++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs @@ -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(); |
