🐛 修复 context 未使用 bug

This commit is contained in:
Aaron 2024-06-03 09:17:10 +00:00 committed by Binary Wang
parent 212c461acd
commit 2f5e8b988c

View File

@ -265,7 +265,7 @@ public class WxCpTpMessageRouter {
* @return the wx cp xml out message
*/
public WxCpXmlOutMessage route(final WxCpTpXmlMessage wxMessage, final Map<String, Object> context) {
return this.route(null, wxMessage, new HashMap<>(2));
return this.route(null, wxMessage, context);
}
/**