Browse Source

Merge branch 'master' of github.com:jellyfin/jellyfin into ffmpeg

Bond_009 6 years ago
parent
commit
a8140cc74b
1 changed files with 18 additions and 0 deletions
  1. 18 0
      MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs

+ 18 - 0
MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs

@@ -0,0 +1,18 @@
+using System.Collections.Generic;
+using MediaBrowser.Common.Configuration;
+using MediaBrowser.Model.Providers;
+
+namespace MediaBrowser.Common.Providers
+{
+    public class SubtitleConfigurationFactory : IConfigurationFactory
+    {
+        public IEnumerable<ConfigurationStore> GetConfigurations()
+        {
+            yield return new ConfigurationStore()
+            {
+                Key = "subtitles",
+                ConfigurationType = typeof(SubtitleOptions)
+            };
+        }
+    }
+}