diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-12-26 23:20:31 +0100 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2020-01-08 01:24:12 +0900 |
| commit | 8a0ef4103632b2888249af2f385e1e7bfc06fbfe (patch) | |
| tree | 8d6904f9acfb4bee696b60a67743156ae0966d13 /Emby.Server.Implementations/Data/SqliteItemRepository.cs | |
| parent | a253fa616da3fd982ca2190b69d25853893665f1 (diff) | |
Minor improvements
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteItemRepository.cs')
| -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 91ca8477d..2ff19a639 100644 --- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs +++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs @@ -6211,7 +6211,7 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type public void SaveMediaAttachments( Guid id, - List<MediaAttachment> attachments, + IReadOnlyList<MediaAttachment> attachments, CancellationToken cancellationToken) { CheckDisposed(); @@ -6243,7 +6243,7 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type private void InsertMediaAttachments( byte[] idBlob, - List<MediaAttachment> attachments, + IReadOnlyList<MediaAttachment> attachments, IDatabaseConnection db, CancellationToken cancellationToken) { |
