mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Reduce indentation
This commit is contained in:
parent
d10de5b7f9
commit
0415d1ccef
@ -1406,9 +1406,12 @@ namespace Emby.Server.Implementations.Dto
|
||||
var width = imageInfo.Width;
|
||||
var height = imageInfo.Height;
|
||||
|
||||
// Fallback to the image processor if the image info is somehow incorrect
|
||||
if (width <= 0 || height <= 0)
|
||||
if (width > 0 && height > 0)
|
||||
{
|
||||
return (double)width / height;
|
||||
}
|
||||
|
||||
// Fallback to the image processor if the image info is somehow incorrect
|
||||
try
|
||||
{
|
||||
var size = _imageProcessor.GetImageDimensions(item, imageInfo);
|
||||
@ -1418,16 +1421,14 @@ namespace Emby.Server.Implementations.Dto
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Failed to determine primary image aspect ratio for {ImagePath}", imageInfo.Path);
|
||||
return item.GetDefaultPrimaryImageAspectRatio();
|
||||
}
|
||||
}
|
||||
|
||||
if (width <= 0 || height <= 0)
|
||||
if (width > 0 && height > 0)
|
||||
{
|
||||
return item.GetDefaultPrimaryImageAspectRatio();
|
||||
}
|
||||
|
||||
return (double)width / height;
|
||||
}
|
||||
|
||||
return item.GetDefaultPrimaryImageAspectRatio();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user