From 68abc103f7ae87c8951ad0f67ccd5c2237d37897 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 5 May 2020 23:56:20 +0200 Subject: [PATCH] ProtocolServer: Report success after stopping a download --- Servers/ProtocolServer/PSClientConnection.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Servers/ProtocolServer/PSClientConnection.cpp b/Servers/ProtocolServer/PSClientConnection.cpp index 2be83a2c12..1d07fdb8b2 100644 --- a/Servers/ProtocolServer/PSClientConnection.cpp +++ b/Servers/ProtocolServer/PSClientConnection.cpp @@ -72,6 +72,7 @@ OwnPtr PSClientConnection::handl bool success = false; if (download) { download->stop(); + success = true; } return make(success); }