From 1bd26ec1fbfdf26d2513eb3fb781d7166c5195c5 Mon Sep 17 00:00:00 2001 From: gazebo Date: Tue, 22 Jan 2019 14:52:43 +0800 Subject: [PATCH] - change all msg to miniprogram. --- business/jxutils/weixinmsg/weixinmsg.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/business/jxutils/weixinmsg/weixinmsg.go b/business/jxutils/weixinmsg/weixinmsg.go index 0384d92b8..e4795bb45 100644 --- a/business/jxutils/weixinmsg/weixinmsg.go +++ b/business/jxutils/weixinmsg/weixinmsg.go @@ -115,9 +115,9 @@ func SendMsgToStore(storeID int, templateID, downloadURL, miniPageURL string, da successCount := 0 for _, openID := range openIDs { realMiniPageURL := miniPageURL - if testMiniProgramStoreMap[storeID] == 0 && debugOpenIDMap[openID] == 0 { - realMiniPageURL = "" - } + // if testMiniProgramStoreMap[storeID] == 0 && debugOpenIDMap[openID] == 0 { + // realMiniPageURL = "" + // } globals.SugarLogger.Debugf("SendMsgToStore storeID:%d, openID:%s, templateID:%s, downloadURL:%s, realMiniPageURL:%s", storeID, openID, templateID, downloadURL, realMiniPageURL) if err2 := SmartMessageTemplateSend(openID, templateID, downloadURL, realMiniPageURL, data); err2 == nil { successCount++