add open subtitle option to only download subtitles that are a perfect match

This commit is contained in:
Luke Pulverenti
2016-04-07 00:09:32 -04:00
parent c27e60d2d8
commit 8e0c9c53bc
6 changed files with 14 additions and 4 deletions

View File

@@ -12,11 +12,14 @@ namespace MediaBrowser.Model.Providers
public string OpenSubtitlesPasswordHash { get; set; }
public bool IsOpenSubtitleVipAccount { get; set; }
public bool RequirePerfectMatch { get; set; }
public SubtitleOptions()
{
DownloadLanguages = new string[] { };
SkipIfAudioTrackMatches = true;
RequirePerfectMatch = true;
}
}
}