diff options
| author | JPVenson <github@jpb.email> | 2024-11-17 11:03:43 +0000 |
|---|---|---|
| committer | JPVenson <github@jpb.email> | 2024-11-17 11:03:43 +0000 |
| commit | b39553611d0d6702ef657f76573cefa2ee437745 (patch) | |
| tree | 9534eb388e16ee057042db0cdf4ad43b063fb45a /Jellyfin.Server.Implementations/Item/MediaAttachmentRepository.cs | |
| parent | 17e4485b946f5b58a0bed99312c57abb59181376 (diff) | |
Applied coding style
Diffstat (limited to 'Jellyfin.Server.Implementations/Item/MediaAttachmentRepository.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/Item/MediaAttachmentRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Item/MediaAttachmentRepository.cs b/Jellyfin.Server.Implementations/Item/MediaAttachmentRepository.cs index c6488f321..155798209 100644 --- a/Jellyfin.Server.Implementations/Item/MediaAttachmentRepository.cs +++ b/Jellyfin.Server.Implementations/Item/MediaAttachmentRepository.cs @@ -40,7 +40,7 @@ public class MediaAttachmentRepository(IDbContextFactory<JellyfinDbContext> dbPr query = query.Where(e => e.Index == filter.Index); } - return query.AsEnumerable().Select(Map).ToImmutableArray(); + return query.AsEnumerable().Select(Map).ToArray(); } private MediaAttachment Map(AttachmentStreamInfo attachment) |
