From 99de4605a985a038143035ae498e1e9a2d50f6ed Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 22 Dec 2022 18:41:27 +0800 Subject: [PATCH] 1 --- webapp/controller/RestApiController.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;