aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Photos
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-19 13:09:37 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-19 13:09:37 -0400
commit799494af0b4c5ff380eeb873ff727ee179c97193 (patch)
tree8694dab23d18cae5a93a452ba97fddee6bf32bcf /Emby.Server.Implementations/Photos
parent9ceff1e96ac61a1a6dde5ff7b26caf7b31982114 (diff)
update image methods
Diffstat (limited to 'Emby.Server.Implementations/Photos')
-rw-r--r--Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs b/Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs
index cc1756f960..c425a761ab 100644
--- a/Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs
+++ b/Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs
@@ -26,7 +26,7 @@ namespace Emby.Server.Implementations.Photos
return Task.FromResult(items);
}
- protected override Task<string> CreateImage(IHasImages item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
+ protected string CreateImage(IHasImages item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
{
return CreateSingleImage(itemsWithImages, outputPathWithoutExtension, ImageType.Primary);
}