diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-19 13:09:37 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-19 13:09:37 -0400 |
| commit | 799494af0b4c5ff380eeb873ff727ee179c97193 (patch) | |
| tree | 8694dab23d18cae5a93a452ba97fddee6bf32bcf /Emby.Server.Implementations/Photos | |
| parent | 9ceff1e96ac61a1a6dde5ff7b26caf7b31982114 (diff) | |
update image methods
Diffstat (limited to 'Emby.Server.Implementations/Photos')
| -rw-r--r-- | Emby.Server.Implementations/Photos/PhotoAlbumImageProvider.cs | 2 |
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); } |
