Skip to content

Commit

Permalink
add one more resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-tron committed Jul 13, 2023
1 parent 20d6584 commit 313b43a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@

### 2023-07-04

- /v2/pubkeys/{public_key}/wallets
- /v2/pubkeys/{public_key}/wallets

### 2023-07-11

- /v2/blockchain/messages/{msg_id}/transaction
2 changes: 1 addition & 1 deletion pkg/api/nft_converters.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func convertNFT(ctx context.Context, item core.NftItem, book addressBook, previe
if image == "" {
image = references.Placeholder
}
for _, size := range []int{100, 500, 1500} {
for _, size := range []int{5, 100, 500, 1500} {
url := previewGen.GenerateImageUrl(image, size, size)
i.Previews = append(i.Previews, oas.ImagePreview{
Resolution: fmt.Sprintf("%vx%v", size, size),
Expand Down

0 comments on commit 313b43a

Please sign in to comment.