|
@@ -103,14 +103,15 @@ func SyncAllWx(svcCtx *svc.ServiceContext) {
|
|
|
logx.Error("syncWx: ", err)
|
|
|
return
|
|
|
}
|
|
|
- data_chatroom := map[string]interface{}{
|
|
|
+
|
|
|
+ dataChatroom := map[string]interface{}{
|
|
|
"MsgType": "TriggerChatroomPushTask",
|
|
|
"Content": map[string]interface{}{
|
|
|
"WeChatId": account.Wechatid,
|
|
|
"Flag": 1,
|
|
|
},
|
|
|
}
|
|
|
- jsonStrChatroom, err := json.Marshal(data_chatroom)
|
|
|
+ jsonStrChatroom, err := json.Marshal(dataChatroom)
|
|
|
err = svcCtx.WechatWs["default"].SendMsg([]byte(jsonStrChatroom))
|
|
|
}
|
|
|
}
|