mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
Merge pull request #2674 from JustAMan/fix-attachments-scan
Make variables binding correspond with column names
(cherry picked from commit 10050a55a5)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
committed by
Joshua M. Boniface
parent
354079862e
commit
899be44388
@@ -6288,8 +6288,8 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
|
|||||||
statement.TryBind("@Codec" + index, attachment.Codec);
|
statement.TryBind("@Codec" + index, attachment.Codec);
|
||||||
statement.TryBind("@CodecTag" + index, attachment.CodecTag);
|
statement.TryBind("@CodecTag" + index, attachment.CodecTag);
|
||||||
statement.TryBind("@Comment" + index, attachment.Comment);
|
statement.TryBind("@Comment" + index, attachment.Comment);
|
||||||
statement.TryBind("@FileName" + index, attachment.FileName);
|
statement.TryBind("@Filename" + index, attachment.FileName);
|
||||||
statement.TryBind("@MimeType" + index, attachment.MimeType);
|
statement.TryBind("@MIMEType" + index, attachment.MimeType);
|
||||||
}
|
}
|
||||||
|
|
||||||
statement.Reset();
|
statement.Reset();
|
||||||
|
|||||||
Reference in New Issue
Block a user