From b47a029e153a54848367f3c53933dd5604693164 Mon Sep 17 00:00:00 2001 From: Binary Wang Date: Sun, 23 Apr 2023 13:48:32 +0800 Subject: [PATCH] :art: fix a typo --- .../weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java b/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java index 753e00826..407702439 100644 --- a/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java +++ b/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java @@ -129,7 +129,7 @@ public abstract class BaseWxCpTpServiceImpl implements WxCpTpService, Requ public String getSuiteTicket() throws WxErrorException { if (this.configStorage.isSuiteTicketExpired()) { // 本地suite ticket 不存在或者过期 - WxError wxError = WxError.fromJson("{\"errcode\":40085, \"errmsg\":\"invaild suite ticket\"}", WxType.CP); + WxError wxError = WxError.fromJson("{\"errcode\":40085, \"errmsg\":\"invalid suite ticket\"}", WxType.CP); throw new WxErrorException(wxError); } return this.configStorage.getSuiteTicket();