BUGFIX:向下级目录关联通道时,出现“未查询到目录xxx的信息"

pull/1270/head
hexq 2024-01-20 10:22:34 +08:00
parent 55b15f8ba6
commit dd4e0d0d9c
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public class PlatformChannelServiceImpl implements IPlatformChannelService {
deviceChannelList.add(deviceChannel);
}
return deviceChannelList;
} else if (catalog == null || !catalogId.equals(platform.getDeviceGBId())) {
} else if (catalog == null && !catalogId.equals(platform.getDeviceGBId())) {
logger.warn("未查询到目录{}的信息", catalogId);
return null;
}