aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2020-11-12 00:10:25 +0100
committerGitHub <noreply@github.com>2020-11-12 00:10:25 +0100
commitdf2cb7f99504325ae35fdead0929225a0a2625f8 (patch)
tree70e446357a775314ece09fbce01e6f11c86fe9c2
parent5669d1dad23153401d1e648faa9b62b1d0e81838 (diff)
parentd0cf60e145f7424e1bdef6f3f7e0d760d4d11096 (diff)
Merge pull request #4466 from kayila/display-clips
Fix #4465 by adding the missing extras folders.
-rw-r--r--MediaBrowser.Controller/Entities/BaseItem.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs
index 2fc7d45c9..1d44a5511 100644
--- a/MediaBrowser.Controller/Entities/BaseItem.cs
+++ b/MediaBrowser.Controller/Entities/BaseItem.cs
@@ -87,6 +87,8 @@ namespace MediaBrowser.Controller.Entities
public const string InterviewFolderName = "interviews";
public const string SceneFolderName = "scenes";
public const string SampleFolderName = "samples";
+ public const string ShortsFolderName = "shorts";
+ public const string FeaturettesFolderName = "featurettes";
public static readonly string[] AllExtrasTypesFolderNames = {
ExtrasFolderName,
@@ -94,7 +96,9 @@ namespace MediaBrowser.Controller.Entities
DeletedScenesFolderName,
InterviewFolderName,
SceneFolderName,
- SampleFolderName
+ SampleFolderName,
+ ShortsFolderName,
+ FeaturettesFolderName
};
[JsonIgnore]