|
@@ -309,7 +309,7 @@ func (this *ArticleController) Detail() {
|
|
|
//30分钟之内阅读同一篇文章不错二次推送
|
|
|
key := "CYGX_ARTICLE_READ" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
|
|
|
if !utils.Rc.IsExist(key) {
|
|
|
- go services.ArticleUserRemind(user, detail, 1)
|
|
|
+ //go services.ArticleUserRemind(user, detail, 1)
|
|
|
// 互动提醒
|
|
|
go services.SendWxCategoryMsgInteractive(user, "阅读报告", articleId)
|
|
|
utils.Rc.Put(key, 1, 30*time.Second)
|
|
@@ -543,7 +543,7 @@ func (this *ArticleController) ArticleCollect() {
|
|
|
br.Msg = "收藏成功"
|
|
|
resp.Status = 1
|
|
|
// 文章收藏消息发送
|
|
|
- go services.ArticleUserRemind(user, detail, 2)
|
|
|
+ //go services.ArticleUserRemind(user, detail, 2)
|
|
|
go services.ArticleHistoryUserLabelLogAdd(articleId, user.UserId)
|
|
|
// 互动提醒
|
|
|
go services.SendWxCategoryMsgInteractive(user, "收藏报告", articleId)
|