update subtitle downloading to use local metadata settings

This commit is contained in:
Luke Pulverenti
2017-11-08 15:23:39 -05:00
parent 50d322cbb7
commit 25138bbeb7
6 changed files with 204 additions and 29 deletions

View File

@@ -13,7 +13,6 @@ namespace MediaBrowser.Model.Providers
public bool IsOpenSubtitleVipAccount { get; set; }
public bool RequirePerfectMatch { get; set; }
public bool SaveSubtitlesInMediaFolders { get; set; }
public SubtitleOptions()
{
@@ -21,7 +20,6 @@ namespace MediaBrowser.Model.Providers
SkipIfAudioTrackMatches = true;
RequirePerfectMatch = true;
SaveSubtitlesInMediaFolders = true;
}
}
}