Merge pull request #2036 from tkdg/master

在线状态判断,用错变量
This commit is contained in:
648540858
2025-11-21 21:08:28 +08:00
committed by GitHub

View File

@@ -89,7 +89,7 @@ public class PlayController {
Assert.notNull(channelId, "通道国标编号不可为NULL");
// 获取可用的zlm
Device device = deviceService.getDeviceByDeviceId(deviceId);
Assert.notNull(deviceId, "设备不存在");
Assert.notNull(device, "设备不存在");
DeviceChannel channel = deviceChannelService.getOne(deviceId, channelId);
Assert.notNull(channel, "通道不存在");