From a12f08a48525ab69704e80bd629231af0e5d15bc Mon Sep 17 00:00:00 2001 From: tanghc Date: Thu, 2 Jan 2020 10:31:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BB=93=E6=9E=9C=E8=BF=94?= =?UTF-8?q?=E5=9B=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/gitee/sop/gatewaycommon/result/BaseExecutorAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sop-common/sop-gateway-common/src/main/java/com/gitee/sop/gatewaycommon/result/BaseExecutorAdapter.java b/sop-common/sop-gateway-common/src/main/java/com/gitee/sop/gatewaycommon/result/BaseExecutorAdapter.java index ac25fb66..c986bd2f 100644 --- a/sop-common/sop-gateway-common/src/main/java/com/gitee/sop/gatewaycommon/result/BaseExecutorAdapter.java +++ b/sop-common/sop-gateway-common/src/main/java/com/gitee/sop/gatewaycommon/result/BaseExecutorAdapter.java @@ -261,7 +261,7 @@ public abstract class BaseExecutorAdapter implements ResultExecutor return null; } Isv isvInfo = isvManager.getIsv(appKey); - String privateKeyPlatform = isvInfo.getPrivateKeyPlatform(); + String privateKeyPlatform = isvInfo == null ? null : isvInfo.getPrivateKeyPlatform(); if (StringUtils.isEmpty(privateKeyPlatform)) { return null; }