aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/MediaSourceManager.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2024-10-28 14:34:29 +0000
committerJPVenson <github@jpb.email>2024-10-28 14:34:29 +0000
commit0639758abd157330c17bdc1831020bfbf6c0ce73 (patch)
treefc76dc728f2acf8640cfbb438b0cbdde96f7e425 /Emby.Server.Implementations/Library/MediaSourceManager.cs
parentf80fa96453a173ce5ea6e7ecab7900137d4b569d (diff)
Updated all instances of ImmutableList to ImmutableArray
Diffstat (limited to 'Emby.Server.Implementations/Library/MediaSourceManager.cs')
-rw-r--r--Emby.Server.Implementations/Library/MediaSourceManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/MediaSourceManager.cs b/Emby.Server.Implementations/Library/MediaSourceManager.cs
index 3bf1a4cde..2fb571a10 100644
--- a/Emby.Server.Implementations/Library/MediaSourceManager.cs
+++ b/Emby.Server.Implementations/Library/MediaSourceManager.cs
@@ -218,7 +218,7 @@ namespace Emby.Server.Implementations.Library
list.Add(source);
}
- return SortMediaSources(list).ToImmutableList();
+ return SortMediaSources(list).ToImmutableArray();
}
/// <inheritdoc />>