validate image aspect ratio > 0

pull/702/head
Luke Pulverenti 9 years ago
parent 54c5e88b87
commit 50a346fe5a

@ -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;
}
}
}
}

Loading…
Cancel
Save