diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-12-20 13:56:32 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-12-20 13:56:32 -0500 |
| commit | c4e21581453d88a66a3d452ae2befd6c21f1ad74 (patch) | |
| tree | 398ef6ff6a85864b3cd6bf62da5f0abb3fcb29fb | |
| parent | 8807e80d0a04cf0c13a2113fab9917065cb0fdd9 (diff) | |
fix metascore itemfield
| -rw-r--r-- | MediaBrowser.Server.Implementations/Dto/DtoService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs index 3579f443f..a14a8ad08 100644 --- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs +++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs @@ -748,7 +748,7 @@ namespace MediaBrowser.Server.Implementations.Dto dto.AspectRatio = hasAspectRatio.AspectRatio; } - if (fields.Contains(ItemFields.ProductionLocations)) + if (fields.Contains(ItemFields.Metascore)) { var hasMetascore = item as IHasMetascore; if (hasMetascore != null) |
