mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
commit
557b165f01
@ -41,10 +41,10 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
public override double GetDefaultPrimaryImageAspectRatio()
|
public override double GetDefaultPrimaryImageAspectRatio()
|
||||||
{
|
{
|
||||||
// REVIEW: @bond
|
// REVIEW: @bond
|
||||||
if (Width.HasValue && Height.HasValue)
|
if (Width != 0 && Height != 0)
|
||||||
{
|
{
|
||||||
double width = Width.Value;
|
double width = Width;
|
||||||
double height = Height.Value;
|
double height = Height;
|
||||||
|
|
||||||
if (Orientation.HasValue)
|
if (Orientation.HasValue)
|
||||||
{
|
{
|
||||||
@ -67,8 +67,6 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
return base.GetDefaultPrimaryImageAspectRatio();
|
return base.GetDefaultPrimaryImageAspectRatio();
|
||||||
}
|
}
|
||||||
|
|
||||||
public new int? Width { get; set; }
|
|
||||||
public new int? Height { get; set; }
|
|
||||||
public string CameraMake { get; set; }
|
public string CameraMake { get; set; }
|
||||||
public string CameraModel { get; set; }
|
public string CameraModel { get; set; }
|
||||||
public string Software { get; set; }
|
public string Software { get; set; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user