handle non-local images in ClearImages
This commit is contained in:
parent
90b27f0e47
commit
caf1af4ea2
|
@ -362,6 +362,12 @@ namespace MediaBrowser.Providers.Manager
|
||||||
|
|
||||||
foreach (var image in item.GetImages(type).ToList())
|
foreach (var image in item.GetImages(type).ToList())
|
||||||
{
|
{
|
||||||
|
if (!image.IsLocalFile)
|
||||||
|
{
|
||||||
|
// TODO: Need to get this image removed
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Delete the source file
|
// Delete the source file
|
||||||
var currentFile = new FileInfo(image.Path);
|
var currentFile = new FileInfo(image.Path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user