diff --git a/services/stickers/api.go b/services/stickers/api.go index 0b80eee2e..385a9845b 100644 --- a/services/stickers/api.go +++ b/services/stickers/api.go @@ -36,9 +36,10 @@ const ipfsGateway = ".ipfs.cf-ipfs.com" type stickerStatus int const ( - statusInstalled stickerStatus = iota - statusPurchased + statusAvailable stickerStatus = iota + statusInstalled statusPending + statusPurchased ) type API struct { @@ -141,6 +142,8 @@ func (api *API) Market(chainID uint64) ([]StickerPack, error) { _, isPurchased := purchasedPacks[packID] if isPurchased { pack.Status = statusPurchased + } else { + pack.Status = statusAvailable } result = append(result, pack) }