Remove global subtitle configuration (#14957)

This commit is contained in:
KGT1
2026-04-18 17:06:46 +02:00
committed by GitHub
parent 946ff12185
commit 1d44899606
4 changed files with 20 additions and 124 deletions

View File

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