Browse Source

Merge branch 'feature/0822_logoff' into develop-new

liujc 6 months ago
parent
commit
e0319b42ed

+ 3 - 0
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/service/impl/SysUserServiceImpl.java

@@ -363,6 +363,9 @@ public class SysUserServiceImpl implements SysUserService {
 
         List<ApiWrapper.LogOff> logOffs = new ArrayList<>();
         result.forEach((k,v)->{
+            if (CollectionUtils.isEmpty(v)) {
+                return;
+            }
             ApiWrapper.LogOff logOff = new ApiWrapper.LogOff();
             logOff.setClient(k);
             logOff.setErrList(v);