|
@@ -549,7 +549,7 @@ public class GameServerServiceImpl implements IGameServerService {
|
|
|
.peek(field -> field.setAccessible(true))
|
|
|
.toList();
|
|
|
|
|
|
- String gsIds = vos.stream().map(GSGameServerDayVO::getGsIds).collect(Collectors.joining(","));
|
|
|
+ String gsIds = vos.stream().filter(i->StringUtils.isNotEmpty(i.getGsIds())).map(GSGameServerDayVO::getGsIds).collect(Collectors.joining(","));
|
|
|
ResultVO<Map<Long, String>> userMap = null;
|
|
|
if(StringUtils.isNotEmpty(gsIds)){
|
|
|
|