From c07ea36ec269f424a4e6eefb18dff248923b4097 Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Mon, 14 Nov 2022 10:35:20 +1100 Subject: [PATCH] fix(windows): handle timeout in downloads Fixes #7708. --- .../install/Keyman.Configuration.UI.KeymanProtocolHandler.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/src/desktop/kmshell/install/Keyman.Configuration.UI.KeymanProtocolHandler.pas b/windows/src/desktop/kmshell/install/Keyman.Configuration.UI.KeymanProtocolHandler.pas index 13876004be..8b78fa7601 100644 --- a/windows/src/desktop/kmshell/install/Keyman.Configuration.UI.KeymanProtocolHandler.pas +++ b/windows/src/desktop/kmshell/install/Keyman.Configuration.UI.KeymanProtocolHandler.pas @@ -128,6 +128,8 @@ begin except on E:ENetHTTPClientException do Result := False; + on E:ENetHTTPResponseException do + Result := False; end; finally Stream.Free;