记得上下班打卡 | git大法好,push需谨慎

Commit 521dd983 authored by jiangxiulong's avatar jiangxiulong

openAccountInfo null

parent 9b46e227
......@@ -70,7 +70,7 @@ public class GoblinNftOrderServiceImpl implements IGoblinNftOrderService {
try {
// 认证验证
GoblinUserNftAccInfoVo openAccountInfo = goblinRedisUtils.getOpenAccountInfo(uid);
if (!NftAccStatusEnum.StatusAcc.SUCCESS.getCode().equals(openAccountInfo.getCode())) {
if (null == openAccountInfo || !NftAccStatusEnum.StatusAcc.SUCCESS.getCode().equals(openAccountInfo.getCode())) {
return ResponseDto.failure("您还未开通数字账户~");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment