Skip to content

Commit

Permalink
TASK: Chhange THUMB to SMALL for thumbnail size
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellienert committed Mar 6, 2020
1 parent b307e37 commit e4a8726
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Classes/AssetSource/UnsplashAssetProxy.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace DL\AssetSource\Unsplash\AssetSource;

/*
Expand Down Expand Up @@ -186,7 +187,7 @@ public function getHeightInPixels(): ?int
*/
public function getThumbnailUri(): ?UriInterface
{
return $this->uriFactory->createUri($this->getImageUrl(UnsplashImageSizeInterface::THUMB));
return $this->uriFactory->createUri($this->getImageUrl(UnsplashImageSizeInterface::SMALL));
}

/**
Expand Down

0 comments on commit e4a8726

Please sign in to comment.