|
@@ -64,7 +64,7 @@ public class ChannelTicketController extends BaseApiController {
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|
|
Channel channel = channelService.getById(channelId);
|
|
Channel channel = channelService.getById(channelId);
|
|
List<Long> channelIds = new ArrayList<>();
|
|
List<Long> channelIds = new ArrayList<>();
|
|
- if (StringUtils.isBlank(channel.getChannelNo())) {
|
|
|
|
|
|
+ if (StringUtils.isNotBlank(channel.getChannelNo())) {
|
|
String[] split = StringUtils.split(channel.getChannelNo(), ".");
|
|
String[] split = StringUtils.split(channel.getChannelNo(), ".");
|
|
for (String s : split) {
|
|
for (String s : split) {
|
|
channelIds.add(Long.valueOf(s));
|
|
channelIds.add(Long.valueOf(s));
|