aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Dto
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-12-03 12:03:47 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-12-03 12:03:47 -0500
commit00bcbfa958a202ca5556c72bea05300ba8004e3e (patch)
tree67f44010cb3c99a3d6b81153d426912f0718e525 /MediaBrowser.Server.Implementations/Dto
parent6c0743a70dfa11bf8603243b27de2aaecb102962 (diff)
update providers
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto')
-rw-r--r--MediaBrowser.Server.Implementations/Dto/DtoService.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
index 20e1eb5434..bb7f818bad 100644
--- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs
+++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
@@ -1765,14 +1765,6 @@ namespace MediaBrowser.Server.Implementations.Dto
return;
}
- if (fields.Contains(ItemFields.OriginalPrimaryImageAspectRatio))
- {
- if (size.Width > 0 && size.Height > 0)
- {
- dto.OriginalPrimaryImageAspectRatio = size.Width / size.Height;
- }
- }
-
var supportedEnhancers = _imageProcessor.GetSupportedEnhancers(item, ImageType.Primary).ToList();
foreach (var enhancer in supportedEnhancers)