Merge pull request #727 from cvium/change_default_aspect

Change default aspect ratio to 2/3 from 0
This commit is contained in:
Andrew Rabert 2019-01-26 16:23:55 -05:00 committed by GitHub
commit 50279be686
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1518,7 +1518,7 @@ namespace MediaBrowser.Controller.Entities
public virtual double GetDefaultPrimaryImageAspectRatio()
{
return 0;
return 2.0 / 3;
}
public virtual string CreatePresentationUniqueKey()