diff --git a/core/src/main/java/haveno/core/app/AvoidStandbyModeService.java b/core/src/main/java/haveno/core/app/AvoidStandbyModeService.java index 345f556a33..bb2cf6e9b4 100644 --- a/core/src/main/java/haveno/core/app/AvoidStandbyModeService.java +++ b/core/src/main/java/haveno/core/app/AvoidStandbyModeService.java @@ -68,6 +68,8 @@ public class AvoidStandbyModeService { this.inhibitorPathSpec = inhibitorPath(); preferences.getUseStandbyModeProperty().addListener((observable, oldValue, newValue) -> { if (newValue) { + isStopped = true; + log.info("AvoidStandbyModeService stopped"); if (Utilities.isLinux() && runningInhibitorProcess().isPresent()) { Objects.requireNonNull(stopLinuxInhibitorCountdownLatch).countDown(); }