mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-28 13:32:19 +01:00
Fix potential problem where aspect ratio would be incorrectly calculated
This commit is contained in:
parent
99acf83dfa
commit
bddfca6215
1 changed files with 1 additions and 2 deletions
|
|
@ -79,8 +79,7 @@ namespace MediaBrowser.Controller.Entities
|
|||
}
|
||||
}
|
||||
|
||||
width /= Height.Value;
|
||||
return width;
|
||||
return width / height;
|
||||
}
|
||||
|
||||
return base.GetDefaultPrimaryImageAspectRatio();
|
||||
|
|
|
|||
Loading…
Reference in a new issue