finish open subtitle config page

This commit is contained in:
Luke Pulverenti
2014-05-07 16:16:57 -04:00
parent 9e4b34a4b1
commit d5b1730a7a
5 changed files with 17 additions and 5 deletions

View File

@@ -319,7 +319,7 @@ namespace MediaBrowser.Model.Configuration
public class SubtitleOptions
{
public bool RequireExternalSubtitles { get; set; }
public string[] SubtitleDownloadLanguages { get; set; }
public string[] DownloadLanguages { get; set; }
public bool DownloadMovieSubtitles { get; set; }
public bool DownloadEpisodeSubtitles { get; set; }
@@ -328,7 +328,7 @@ namespace MediaBrowser.Model.Configuration
public SubtitleOptions()
{
SubtitleDownloadLanguages = new string[] { };
DownloadLanguages = new string[] { };
}
}
}