Authored by liangyi.chen@yoho.cn

Fix

... ... @@ -711,6 +711,11 @@ public class GrassArticleServiceImpl implements IGrassArticleService {
} catch (Exception e) {
logger.warn("publishArticle ,grassArticleTopicDao insertArticleTopic error, uid is {}, e is {}", req.getAuthorUid(), e);
}
//后台文章发布成功需要给被at的用户发送站内信通知 方法本身已过滤通知过的用户
if(articleInfo.getAuthStatus() == 1){
sendInBoxForAtUsers(articleId,req.getAuthorUid(),false);
}
clearArticleNewCache(articleId);
}
... ...