aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Photos
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-07 17:06:13 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-07 17:06:13 -0400
commit52aeb3c40b3e2f0fdc377ac7c793714add2be0ef (patch)
tree8be8339bd19fc54291a21934bdfa704826dc9eb1 /Emby.Server.Implementations/Photos
parentcc679f356131707fa8726b7fc5bc4deca4383b28 (diff)
consolidate interfaces
Diffstat (limited to 'Emby.Server.Implementations/Photos')
-rw-r--r--Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs b/Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs
index 17f9b491d..e23285425 100644
--- a/Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs
+++ b/Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs
@@ -18,7 +18,7 @@ namespace Emby.Server.Implementations.Photos
{
}
- protected override List<BaseItem> GetItemsWithImages(IHasImages item)
+ protected override List<BaseItem> GetItemsWithImages(IHasMetadata item)
{
var photoAlbum = (PhotoAlbum)item;
var items = GetFinalItems(photoAlbum.Children.ToList());
@@ -26,7 +26,7 @@ namespace Emby.Server.Implementations.Photos
return items;
}
- protected override string CreateImage(IHasImages item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
+ protected override string CreateImage(IHasMetadata item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
{
return CreateSingleImage(itemsWithImages, outputPathWithoutExtension, ImageType.Primary);
}