Fix potential problem where aspect ratio would be incorrectly calculated

pull/702/head
hawken 6 years ago
parent 99acf83dfa
commit bddfca6215

@ -79,8 +79,7 @@ namespace MediaBrowser.Controller.Entities
} }
} }
width /= Height.Value; return width / height;
return width;
} }
return base.GetDefaultPrimaryImageAspectRatio(); return base.GetDefaultPrimaryImageAspectRatio();

Loading…
Cancel
Save