Merge pull request #4205 from cvium/fix_aspectratio_calc

Fix aspect ratio calculation sometimes returning 0 or 1
This commit is contained in:
Bond-009
2020-09-25 08:19:09 +02:00
committed by GitHub

View File

@@ -1431,7 +1431,7 @@ namespace Emby.Server.Implementations.Dto
return null;
}
return width / height;
return (double)width / height;
}
}
}