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
commit c67ffa417a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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