diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-02-10 15:06:52 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-02-10 15:06:52 -0500 |
| commit | b91f1e4d16299e5f861c037bf449e5718140d82c (patch) | |
| tree | 626a9bd4bc00bee8b3ce8ab489ad6ac0cc477ceb /MediaBrowser.Controller/Entities/TV/Season.cs | |
| parent | 58fad600c943d2cb6d62a475017c1ec677b86718 (diff) | |
support dummied up image a/r's
Diffstat (limited to 'MediaBrowser.Controller/Entities/TV/Season.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/TV/Season.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Season.cs b/MediaBrowser.Controller/Entities/TV/Season.cs index f2a6586e2..2ff7e4ce5 100644 --- a/MediaBrowser.Controller/Entities/TV/Season.cs +++ b/MediaBrowser.Controller/Entities/TV/Season.cs @@ -54,6 +54,14 @@ namespace MediaBrowser.Controller.Entities.TV [IgnoreDataMember] public string SeriesSortName { get; set; } + public override double? GetDefaultPrimaryImageAspectRatio() + { + double value = 2; + value /= 3; + + return value; + } + public string FindSeriesSortName() { var series = Series; |
