diff --git a/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs b/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs index 948027603f..42f07dbff5 100644 --- a/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs +++ b/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs @@ -9,22 +9,22 @@ namespace MediaBrowser.Model.Configuration /// /// Allow all embedded subs. /// - AllowAll, + AllowAll = 0, /// /// Allow only embedded subs that are text based. /// - AllowText, + AllowText = 1, /// /// Allow only embedded subs that are image based. /// - AllowImage, + AllowImage = 2, /// /// Disable all embedded subs. /// - AllowNone, + AllowNone = 3, } }