Fix aspect ratio calculation returning 0 or 1 when item has no default AR

pull/4205/head
cvium 4 years ago
parent 226316a486
commit ec5b738079

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

Loading…
Cancel
Save