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 /MediaBrowser.Controller/Persistence/IItemRepository.cs | |
| parent | a253fa616da3fd982ca2190b69d25853893665f1 (diff) | |
Minor improvements
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IItemRepository.cs')
| -rw-r--r-- | MediaBrowser.Controller/Persistence/IItemRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Persistence/IItemRepository.cs b/MediaBrowser.Controller/Persistence/IItemRepository.cs index 68df20c3a..5a5b7f58f 100644 --- a/MediaBrowser.Controller/Persistence/IItemRepository.cs +++ b/MediaBrowser.Controller/Persistence/IItemRepository.cs @@ -91,7 +91,7 @@ namespace MediaBrowser.Controller.Persistence /// <param name="id">The identifier.</param> /// <param name="attachments">The attachments.</param> /// <param name="cancellationToken">The cancellation token.</param> - void SaveMediaAttachments(Guid id, List<MediaAttachment> attachments, CancellationToken cancellationToken); + void SaveMediaAttachments(Guid id, IReadOnlyList<MediaAttachment> attachments, CancellationToken cancellationToken); /// <summary> /// Gets the item ids. |
