mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-05 22:02:53 +01:00
fixes #360 - Series.xml not being read correctly
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user