|
|
@@ -1249,7 +1249,14 @@ public class CoinServiceImpl implements CoinService {
|
|
|
}
|
|
|
|
|
|
private void renderMainSearch4CmcMap(List<CoinCmcMap> cmcMapList) {
|
|
|
-
|
|
|
+ for (CoinCmcMap coinCmcMap : cmcMapList) {
|
|
|
+ String platform = coinCmcMap.getPlatform();
|
|
|
+ if (StringUtils.isNotEmpty(platform)) {
|
|
|
+ JSONObject jsonObject = JSONObject.parseObject(platform);
|
|
|
+ jsonObject.remove("token_address");
|
|
|
+ coinCmcMap.setPlatform(jsonObject.toJSONString());
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
private void renderMainSearch4Image(List<FileImage> fileImageList) {
|