diff --git a/webapp/controller/RestApiController.class.php b/webapp/controller/RestApiController.class.php index 369b40b6..f399a80a 100644 --- a/webapp/controller/RestApiController.class.php +++ b/webapp/controller/RestApiController.class.php @@ -84,14 +84,14 @@ class RestApiController extends BaseController { ); if (in_array($tokenId, $heroBoxes)) { $nftView['name'] = 'CEBG Airdrop Hero'; - $nftView['image'] = 'CEBG Airdrop Hero'; - $nftView['description'] = 'https://www.cebg.games/res/nfts/CEBG_Space_Hero.png'; + $nftView['image'] = 'https://www.cebg.games/res/nfts/CEBG_Space_Hero.png'; + $nftView['description'] = 'CEBG Airdrop Hero'; return true; } if (in_array($tokenId, $weaponBoxes)) { $nftView['name'] = 'CEBG Airdrop Weapon'; - $nftView['image'] = 'CEBG Airdrop Weapon'; - $nftView['description'] = 'https://www.cebg.games/res/nfts/CEBG_Space_Weapon.png'; + $nftView['image'] = 'https://www.cebg.games/res/nfts/CEBG_Space_Weapon.png'; + $nftView['description'] = 'CEBG Airdrop Weapon'; return true; } return false;