From 12b671d92fbd2d134bb22551484ee9a64c70aa9a Mon Sep 17 00:00:00 2001 From: gazebo Date: Thu, 28 Feb 2019 09:40:11 +0800 Subject: [PATCH] - fix msg --- platformapi/weixinapi/weixinapi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformapi/weixinapi/weixinapi.go b/platformapi/weixinapi/weixinapi.go index 0f0c1bf7..0e496718 100644 --- a/platformapi/weixinapi/weixinapi.go +++ b/platformapi/weixinapi/weixinapi.go @@ -97,7 +97,7 @@ func isSNSAction(action string) bool { func (a *API) AccessAPI(action string, params map[string]interface{}, body string) (retVal map[string]interface{}, err error) { if params != nil && body != "" { - panic("params and body can not all non-empty") + panic("params and body can not all be empty") } params2 := make(map[string]interface{}) for k, v := range params {