aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Dto/DtoService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-16 13:06:31 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-16 13:06:31 -0400
commitd577e1c7b01c45bca49cb47a1af3697f904f9e4d (patch)
tree4cc6fd08f7181722287de5041d944660b760d8a8 /MediaBrowser.Server.Implementations/Dto/DtoService.cs
parent3741eb24263de151a57e66dd6770fc82f69fe9c4 (diff)
support image stubbing
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto/DtoService.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Dto/DtoService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
index 5c0b5e5b2..97867d6a2 100644
--- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs
+++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
@@ -1743,7 +1743,7 @@ namespace MediaBrowser.Server.Implementations.Dto
{
var imageInfo = item.GetImageInfo(ImageType.Primary, 0);
- if (imageInfo == null)
+ if (imageInfo == null || !imageInfo.IsLocalFile)
{
return;
}