handle non-local images in ClearImages

pull/702/head
Luke Pulverenti 9 years ago
parent 2a12cf9e8a
commit 25d586366f

@ -362,6 +362,12 @@ namespace MediaBrowser.Providers.Manager
foreach (var image in item.GetImages(type).ToList())
{
if (!image.IsLocalFile)
{
// TODO: Need to get this image removed
continue;
}
// Delete the source file
var currentFile = new FileInfo(image.Path);

Loading…
Cancel
Save