diff --git a/webapp/models/Nft.php b/webapp/models/Nft.php index 725198ae..67b1b489 100644 --- a/webapp/models/Nft.php +++ b/webapp/models/Nft.php @@ -191,7 +191,7 @@ class Nft extends BaseModel { $nftView['name'] = $itemMeta['name']; $nftView['description'] = getXVal($itemMeta, 'nft_desc', $itemMeta['name']); $nftView['image'] = 'https://www.cebg.games/res/avatars/' . $itemMeta['id'] . '.png'; - $tags = self::parseTags($nftDb['tags']); + $tags = self::parseTags($row['tags']); if (in_array(self::GENESIS_TAG, $tags)) { $nftView['image'] = 'https://www.cebg.games/res/avatars/' . $itemMeta['id'] . '_1' . '.png'; }