Fix aspect ratio calculation sometimes returning 0 or 1
@@ -1431,7 +1431,7 @@ namespace Emby.Server.Implementations.Dto
return null;
}
- return width / height;
+ return (double)width / height;