We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd1cf2d commit 913aec6Copy full SHA for 913aec6
weixin-java-common/src/main/java/me/chanjar/weixin/common/util/crypto/WxCryptUtil.java
@@ -270,10 +270,10 @@ public String decrypt(String cipherText) {
270
throw new RuntimeException(e);
271
}
272
273
- // appid不相同的情况
274
- if (!fromAppid.equals(this.appidOrCorpid)) {
275
- throw new RuntimeException("AppID不正确,请核实!");
276
- }
+ // appid不相同的情况 暂时忽略这段判断
+// if (!fromAppid.equals(this.appidOrCorpid)) {
+// throw new RuntimeException("AppID不正确,请核实!");
+// }
277
278
return xmlContent;
279
0 commit comments