Do not touch "old" local artwork unless saving locally
This commit is contained in:
parent
1a92d94e92
commit
35cfd760d4
|
@ -172,7 +172,9 @@ namespace MediaBrowser.Providers.Manager
|
|||
SetImagePath(item, type, imageIndex, savedPaths[0]);
|
||||
|
||||
// Delete the current path
|
||||
if (currentImageIsLocalFile && !savedPaths.Contains(currentImagePath, StringComparer.OrdinalIgnoreCase))
|
||||
if (currentImageIsLocalFile
|
||||
&& !savedPaths.Contains(currentImagePath, StringComparer.OrdinalIgnoreCase)
|
||||
&& (saveLocally || currentImagePath.Contains(_config.ApplicationPaths.InternalMetadataPath, StringComparison.OrdinalIgnoreCase)))
|
||||
{
|
||||
var currentPath = currentImagePath;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user