From: Matthew Skinner Date: Wed, 31 Mar 2021 19:48:19 +0000 (+1100) Subject: Fix warning at the wrong time. (#10351) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=ec8f411774c397e225d1c254b010101af181d2c4;p=openhab-addons.git Fix warning at the wrong time. (#10351) Signed-off-by: Matthew Skinner --- diff --git a/bundles/org.openhab.binding.ipcamera/src/main/java/org/openhab/binding/ipcamera/internal/handler/IpCameraHandler.java b/bundles/org.openhab.binding.ipcamera/src/main/java/org/openhab/binding/ipcamera/internal/handler/IpCameraHandler.java index 9e0c93215c..ddc7a5d592 100644 --- a/bundles/org.openhab.binding.ipcamera/src/main/java/org/openhab/binding/ipcamera/internal/handler/IpCameraHandler.java +++ b/bundles/org.openhab.binding.ipcamera/src/main/java/org/openhab/binding/ipcamera/internal/handler/IpCameraHandler.java @@ -1735,8 +1735,8 @@ public class IpCameraHandler extends BaseThingHandler { onvifCamera.connect(thing.getThingTypeUID().getId().equals(ONVIF_THING)); } - // for poll times above 9 seconds don't display a warning about the Image channel. - if (9000 <= cameraConfig.getPollTime() && cameraConfig.getUpdateImageWhen().contains("1")) { + // for poll times 9 seconds and above don't display a warning about the Image channel. + if (9000 > cameraConfig.getPollTime() && cameraConfig.getUpdateImageWhen().contains("1")) { logger.warn( "The Image channel is set to update more often than 8 seconds. This is not recommended. The Image channel is best used only for higher poll times. See the readme file on how to display the cameras picture for best results or use a higher poll time."); }