aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Video.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-03-07 15:54:30 +0100
committerBond-009 <bond.009@outlook.com>2019-03-07 21:13:13 +0100
commitc5fce647defd2eace2d2431ccc52ffe1d027c184 (patch)
treecafd17e6a1217c4283ce7c1b2bee3ac7e77850ab /MediaBrowser.Controller/Entities/Video.cs
parent10a0d6bdba821449abfb1d48e9708ba6f3fc6a62 (diff)
Cleanup/simplification
* Removed useless copies/allocations * Reduced unneeded complexity
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
-rw-r--r--MediaBrowser.Controller/Entities/Video.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs
index 31cd42975..8379dcc09 100644
--- a/MediaBrowser.Controller/Entities/Video.cs
+++ b/MediaBrowser.Controller/Entities/Video.cs
@@ -167,7 +167,7 @@ namespace MediaBrowser.Controller.Entities
AdditionalParts = Array.Empty<string>();
LocalAlternateVersions = Array.Empty<string>();
SubtitleFiles = Array.Empty<string>();
- LinkedAlternateVersions = EmptyLinkedChildArray;
+ LinkedAlternateVersions = Array.Empty<LinkedChild>();
}
public override bool CanDownload()