update image size responses

This commit is contained in:
Luke Pulverenti
2017-06-24 14:32:57 -04:00
parent 6b2445aa2c
commit 8dcfda89d1
2 changed files with 3 additions and 1 deletions

View File

@@ -326,7 +326,7 @@ namespace MediaBrowser.Api.Images
var fileInfo = _fileSystem.GetFileInfo(info.Path);
length = fileInfo.Length;
var size = _imageProcessor.GetImageSize(info);
var size = _imageProcessor.GetImageSize(info, true);
width = Convert.ToInt32(size.Width);
height = Convert.ToInt32(size.Height);