wangfei 6 年之前
父節點
當前提交
ef92a5e3ce
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      controllers/component.go

+ 1
- 1
controllers/component.go 查看文件

@@ -300,7 +300,7 @@ func (c *WechatController) validReceiveData(receiveData []byte, aesKey string, w
300 300
 	decmsg := string(decryptData)
301 301
 	xmlStart := strings.Index(decmsg, "<xml>")
302 302
 	if xmlStart < 0 {
303
-		utils.LogError("xml解析失败:格式不正确")
303
+		utils.LogError("xml解析失败:格式不正确,没有xml节点")
304 304
 		return
305 305
 	}
306 306