mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
reduce operations after config changes
This commit is contained in:
parent
bdcb003c1d
commit
e3fd8525d6
@ -288,17 +288,6 @@ namespace MediaBrowser.Server.Implementations.Library
|
|||||||
{
|
{
|
||||||
var config = ConfigurationManager.Configuration;
|
var config = ConfigurationManager.Configuration;
|
||||||
|
|
||||||
// Figure out whether or not we should refresh people after the update is finished
|
|
||||||
var refreshPeopleAfterUpdate = !_internetProvidersEnabled && config.EnableInternetProviders;
|
|
||||||
|
|
||||||
// This is true if internet providers has just been turned on, or if People have just been removed from InternetProviderExcludeTypes
|
|
||||||
if (!refreshPeopleAfterUpdate)
|
|
||||||
{
|
|
||||||
var newConfigurationFetchesPeopleImages = config.InternetProviderExcludeTypes == null || !config.InternetProviderExcludeTypes.Contains(typeof(Person).Name, StringComparer.OrdinalIgnoreCase);
|
|
||||||
|
|
||||||
refreshPeopleAfterUpdate = newConfigurationFetchesPeopleImages && !_peopleImageFetchingEnabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
var ibnPathChanged = !string.Equals(_itemsByNamePath, ConfigurationManager.ApplicationPaths.ItemsByNamePath, StringComparison.CurrentCulture);
|
var ibnPathChanged = !string.Equals(_itemsByNamePath, ConfigurationManager.ApplicationPaths.ItemsByNamePath, StringComparison.CurrentCulture);
|
||||||
|
|
||||||
if (ibnPathChanged)
|
if (ibnPathChanged)
|
||||||
@ -320,11 +309,6 @@ namespace MediaBrowser.Server.Implementations.Library
|
|||||||
|
|
||||||
// Any number of configuration settings could change the way the library is refreshed, so do that now
|
// Any number of configuration settings could change the way the library is refreshed, so do that now
|
||||||
_taskManager.CancelIfRunningAndQueue<RefreshMediaLibraryTask>();
|
_taskManager.CancelIfRunningAndQueue<RefreshMediaLibraryTask>();
|
||||||
|
|
||||||
if (refreshPeopleAfterUpdate)
|
|
||||||
{
|
|
||||||
_taskManager.CancelIfRunningAndQueue<PeopleValidationTask>();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user