aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Dto/DtoService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-04-15 11:41:42 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-04-15 11:41:42 -0400
commit064b5e82e436c717f74a4d0a353e01e20da9752c (patch)
tree3937f44bc852e661cc681afb0a2ef0d859bb62e9 /MediaBrowser.Server.Implementations/Dto/DtoService.cs
parent9189b551eccfc2e8e511d18e1cbe228f0be73c60 (diff)
fix roku thumbnails
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto/DtoService.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Dto/DtoService.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
index c4501564f..190b8fcf4 100644
--- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs
+++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
@@ -357,7 +357,10 @@ namespace MediaBrowser.Server.Implementations.Dto
: item.CanDownload(user);
}
-
+ if (fields.Contains(ItemFields.Etag))
+ {
+ dto.Etag = item.GetEtag(user);
+ }
return dto;
}