From 4b2b9c1a84beef45054882d4ea347f44ae27fcda Mon Sep 17 00:00:00 2001 From: rc-swag <58423624+rc-swag@users.noreply.github.com> Date: Wed, 11 Jun 2025 22:09:48 +1000 Subject: [PATCH] fix(windows): early return when download meta data invalid is invalid or the version is not newer then currently installed --- .../desktop/kmshell/main/Keyman.System.UpdateStateMachine.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/src/desktop/kmshell/main/Keyman.System.UpdateStateMachine.pas b/windows/src/desktop/kmshell/main/Keyman.System.UpdateStateMachine.pas index a8291ee325..6892098212 100644 --- a/windows/src/desktop/kmshell/main/Keyman.System.UpdateStateMachine.pas +++ b/windows/src/desktop/kmshell/main/Keyman.System.UpdateStateMachine.pas @@ -783,6 +783,7 @@ begin // Return to Idle state bucStateContext.RemoveCachedFiles; ChangeState(IdleState); + Exit; end; DownloadResult := DownloadUpdatesBackground;