aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Jones <matthewbtjones2000@gmail.com>2022-02-09 23:33:46 +0000
committerMatthew Jones <matthewbtjones2000@gmail.com>2022-02-09 23:33:46 +0000
commitb7cab46b4ac3da712c63e34bdac3559bdd53ad98 (patch)
tree61e186efca8e8f9010006125a929a5d0a3e8b00b
parent91d143d6ee25a309efadf1575a1efc432adb81cf (diff)
Added values to EmbeddedSubtitleOptions enum
-rw-r--r--MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs b/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs
index 948027603..42f07dbff 100644
--- a/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs
+++ b/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs
@@ -9,22 +9,22 @@ namespace MediaBrowser.Model.Configuration
/// <summary>
/// Allow all embedded subs.
/// </summary>
- AllowAll,
+ AllowAll = 0,
/// <summary>
/// Allow only embedded subs that are text based.
/// </summary>
- AllowText,
+ AllowText = 1,
/// <summary>
/// Allow only embedded subs that are image based.
/// </summary>
- AllowImage,
+ AllowImage = 2,
/// <summary>
/// Disable all embedded subs.
/// </summary>
- AllowNone,
+ AllowNone = 3,
}
}