mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
look right in IE, all episodes are ajax loaded.
commited somewhere between vancouver and vegas @ 2135ft. Alt and 480mph.
This commit is contained in:
@@ -8,6 +8,8 @@ namespace NzbDrone.Core.Providers
|
||||
public class ConfigProvider : IConfigProvider
|
||||
{
|
||||
private const string SERIES_ROOTS = "SeriesRoots";
|
||||
private const string EPISODE_NAME_FORMAT = "EpisodeNameFormat";
|
||||
|
||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||
private readonly IRepository _sonicRepo;
|
||||
|
||||
@@ -21,6 +23,13 @@ namespace NzbDrone.Core.Providers
|
||||
return GetValue(key, String.Empty, false);
|
||||
}
|
||||
|
||||
public String EpisodeNameFormat
|
||||
{
|
||||
get { return GetValue(EPISODE_NAME_FORMAT); }
|
||||
|
||||
set { SetValue(EPISODE_NAME_FORMAT, value); }
|
||||
}
|
||||
|
||||
public String SeriesRoot
|
||||
{
|
||||
get { return GetValue(SERIES_ROOTS); }
|
||||
|
||||
Reference in New Issue
Block a user