aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/PhotoAlbum.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-09-22 16:33:01 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-09-22 16:33:01 -0400
commit31b01cbb5645cdc71791c85f2607aafbc6568dbc (patch)
tree4d3472bb0d26fcf98511b07a0e33c174ea7300ce /MediaBrowser.Controller/Entities/PhotoAlbum.cs
parent2d29d903be8af52a953bf847e1f6b168fbb236cc (diff)
add fixes for dng images
Diffstat (limited to 'MediaBrowser.Controller/Entities/PhotoAlbum.cs')
-rw-r--r--MediaBrowser.Controller/Entities/PhotoAlbum.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/PhotoAlbum.cs b/MediaBrowser.Controller/Entities/PhotoAlbum.cs
index af9d8c801..52d743e36 100644
--- a/MediaBrowser.Controller/Entities/PhotoAlbum.cs
+++ b/MediaBrowser.Controller/Entities/PhotoAlbum.cs
@@ -30,5 +30,10 @@ namespace MediaBrowser.Controller.Entities
return false;
}
}
+
+ public override double? GetDefaultPrimaryImageAspectRatio()
+ {
+ return 1;
+ }
}
}