validate image aspect ratio > 0

This commit is contained in:
Luke Pulverenti 2015-01-30 16:17:19 -05:00
parent 54c5e88b87
commit 50a346fe5a

View File

@ -1600,7 +1600,10 @@ namespace MediaBrowser.Server.Implementations.Dto
if (fields.Contains(ItemFields.OriginalPrimaryImageAspectRatio))
{
dto.OriginalPrimaryImageAspectRatio = size.Width / size.Height;
if (size.Width > 0 && size.Height > 0)
{
dto.OriginalPrimaryImageAspectRatio = size.Width / size.Height;
}
}
var supportedEnhancers = _imageProcessor.GetSupportedEnhancers(item, ImageType.Primary).ToList();
@ -1617,7 +1620,10 @@ namespace MediaBrowser.Server.Implementations.Dto
}
}
dto.PrimaryImageAspectRatio = size.Width / size.Height;
if (size.Width > 0 && size.Height > 0)
{
dto.PrimaryImageAspectRatio = size.Width / size.Height;
}
}
}
}