Commit 8cb0df03 by 徐高华

Merge branch 'feature/自建应用验证' into 'master'

群满

See merge request !1248
parents 92971fef c03da95e
...@@ -234,16 +234,21 @@ public class GroupChatHmServiceImpl implements GroupChatHmService { ...@@ -234,16 +234,21 @@ public class GroupChatHmServiceImpl implements GroupChatHmService {
} }
} }
} }
boolean flag = false ;
if (null != cid) { if (null != cid) {
logger.info("hm={},群={},要删={}", wxChatId, qwChatIdList, cid.getWxChatId()); logger.info("hm={},群={},要删={}", wxChatId, qwChatIdList, cid.getWxChatId());
Iterator<String> it = qwChatIdList.iterator() ; Iterator<String> it = qwChatIdList.iterator() ;
while(it.hasNext()) { while(it.hasNext()) {
if(it.next().equals(cid.getWxChatIdDk())) { if(it.next().equals(cid.getWxChatIdDk())) {
it.remove(); it.remove();
flag = true ;
break ; break ;
} }
} }
} }
if(flag) {
break ;
}
} }
logger.info("处理后群活码应有的群={}", qwChatIdList); logger.info("处理后群活码应有的群={}", qwChatIdList);
// 保存活码 // 保存活码
......
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