fixes #360 - Series.xml not being read correctly

This commit is contained in:
Luke Pulverenti
2013-06-23 11:17:42 -04:00
parent 189618a751
commit cc2cfabda8
2 changed files with 6 additions and 18 deletions

View File

@@ -111,8 +111,8 @@ namespace MediaBrowser.Providers.TV
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo)
{
// Don't proceed if there's local metadata and save local is off, as it's likely from another source
if (HasLocalMeta(item) && !ConfigurationManager.Configuration.SaveLocalMeta)
// Don't proceed if there's local metadata
if (HasLocalMeta(item))
{
return false;
}
@@ -151,12 +151,6 @@ namespace MediaBrowser.Providers.TV
/// <returns>Task{System.Boolean}.</returns>
public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
{
// Don't proceed if there's local metadata and save local is off, as it's likely from another source
if (HasLocalMeta(item) && !ConfigurationManager.Configuration.SaveLocalMeta)
{
return false;
}
cancellationToken.ThrowIfCancellationRequested();
var episode = (Episode)item;