Merge pull request #520 from hawken93/fix_aspect

Fix potential bug where aspect ratio would be incorrectly calculated
pull/702/head
Joshua M. Boniface 6 years ago committed by GitHub
commit 5b1f36ef27

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