Commit 3171ec7f by Future

bug fix

parent d6290168
...@@ -1145,7 +1145,7 @@ public class ImMessageServiceImpl extends BaseServiceImpl<ImMessageMapper, ImMes ...@@ -1145,7 +1145,7 @@ public class ImMessageServiceImpl extends BaseServiceImpl<ImMessageMapper, ImMes
*/ */
private void pushMsgToOfflineMembers(ImApplication application, ImConversationMembers members, private void pushMsgToOfflineMembers(ImApplication application, ImConversationMembers members,
String pushContent, PushExtParam pushExt) { String pushContent, PushExtParam pushExt) {
if (members.getDoNotDisturb()) { if (members.getDoNotDisturb() != null && members.getDoNotDisturb()) {
return; return;
} }
// 不是静默推送 // 不是静默推送
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment