diff --git a/bundles/org.smarthomej.binding.amazonechocontrol/src/main/java/org/smarthomej/binding/amazonechocontrol/internal/handler/EchoHandler.java b/bundles/org.smarthomej.binding.amazonechocontrol/src/main/java/org/smarthomej/binding/amazonechocontrol/internal/handler/EchoHandler.java index d933eb3db3..f070a05a1f 100644 --- a/bundles/org.smarthomej.binding.amazonechocontrol/src/main/java/org/smarthomej/binding/amazonechocontrol/internal/handler/EchoHandler.java +++ b/bundles/org.smarthomej.binding.amazonechocontrol/src/main/java/org/smarthomej/binding/amazonechocontrol/internal/handler/EchoHandler.java @@ -600,7 +600,8 @@ private void stopCurrentNotification() { ScheduledFuture currentNotificationUpdateTimer = this.currentNotificationUpdateTimer; if (currentNotificationUpdateTimer != null) { this.currentNotificationUpdateTimer = null; - currentNotificationUpdateTimer.cancel(true); + // do not interrupt the current set, otherwise the DELETE request will be aborted + currentNotificationUpdateTimer.cancel(false); } NotificationTO currentNotification = this.currentNotification; if (currentNotification != null) {