mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Fix unused var, log typo
This commit is contained in:
parent
2e2a594e19
commit
4ace7f5c53
@ -354,7 +354,7 @@ namespace MediaBrowser.Providers.Manager
|
||||
|
||||
return _metadataProviders.OfType<IMetadataProvider<T>>()
|
||||
.Where(i => CanRefresh(i, item, libraryOptions, includeDisabled, forceEnableInternetMetadata))
|
||||
.OrderBy(i => GetConfiguredOrder(item, i, libraryOptions, globalMetadataOptions))
|
||||
.OrderBy(i => GetConfiguredOrder(item, i, libraryOptions, currentOptions))
|
||||
.ThenBy(GetDefaultOrder);
|
||||
}
|
||||
|
||||
@ -908,7 +908,7 @@ namespace MediaBrowser.Providers.Manager
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Error in {0}.Suports", i.GetType().Name);
|
||||
_logger.LogError(ex, "Error in {0}.Supports", i.GetType().Name);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user