aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ExtraType.cs
diff options
context:
space:
mode:
authorphotonconvergence <116527579+photonconvergence@users.noreply.github.com>2022-10-27 18:01:04 -0700
committerphotonconvergence <116527579+photonconvergence@users.noreply.github.com>2022-10-27 18:01:04 -0700
commit09e8a7e62c9a8ef567f2d336e37a7cc732e3aaab (patch)
tree8f0f8d8590e730d61d896344c9bd5e253482a941 /MediaBrowser.Model/Entities/ExtraType.cs
parent790f67aac11e5c32bad19126d4e35b2afa259006 (diff)
Fix extra type differentiation
Change rules for Featurettes and Shorts so they don't both get classed as ExtraType.Clip. Fix test that these changes break
Diffstat (limited to 'MediaBrowser.Model/Entities/ExtraType.cs')
-rw-r--r--MediaBrowser.Model/Entities/ExtraType.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Entities/ExtraType.cs b/MediaBrowser.Model/Entities/ExtraType.cs
index aca4bd282..66da80d96 100644
--- a/MediaBrowser.Model/Entities/ExtraType.cs
+++ b/MediaBrowser.Model/Entities/ExtraType.cs
@@ -13,6 +13,8 @@ namespace MediaBrowser.Model.Entities
Scene = 6,
Sample = 7,
ThemeSong = 8,
- ThemeVideo = 9
+ ThemeVideo = 9,
+ Featurette = 10,
+ Short = 11
}
}