fix video images not being created

This commit is contained in:
Luke Pulverenti
2017-08-26 15:50:02 -04:00
parent 6147491a8a
commit 749a181fac
4 changed files with 21 additions and 2 deletions

View File

@@ -39,6 +39,11 @@ namespace MediaBrowser.Providers.MediaInfo
return new List<string>();
}
if (!video.IsCompleteMedia)
{
return new List<string>();
}
VideoContentType mediaType;
if (video is Episode)