From 68cb4fe354cf9672b23cc54bf6abf645f8281b63 Mon Sep 17 00:00:00 2001 From: MaxXor Date: Thu, 15 Jan 2015 10:25:09 +0100 Subject: [PATCH] Close RemoteShell when it's still open on uninstall --- Client/Core/Commands/CommandHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Client/Core/Commands/CommandHandler.cs b/Client/Core/Commands/CommandHandler.cs index 0548f64e..faa3d4a1 100644 --- a/Client/Core/Commands/CommandHandler.cs +++ b/Client/Core/Commands/CommandHandler.cs @@ -194,6 +194,7 @@ public static void HandleUninstall(Packets.ServerPackets.Uninstall command, Clie startInfo.FileName = filename; Process.Start(startInfo); + CloseShell(); SystemCore.Disconnect = true; client.Disconnect(); }