From d0a9f863ecf808a9b64ff836272abd9abc8b9943 Mon Sep 17 00:00:00 2001 From: C1rdec Date: Mon, 24 Feb 2020 02:56:40 -0500 Subject: [PATCH] Dispose Poe Process --- src/Lurker.UI/Properties/AssemblyInfo.cs | 4 ++-- src/Lurker/ClientLurker.cs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Lurker.UI/Properties/AssemblyInfo.cs b/src/Lurker.UI/Properties/AssemblyInfo.cs index a71bbbfc..88049104 100644 --- a/src/Lurker.UI/Properties/AssemblyInfo.cs +++ b/src/Lurker.UI/Properties/AssemblyInfo.cs @@ -57,5 +57,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.4.4.0")] -[assembly: AssemblyFileVersion("1.4.4.0")] +[assembly: AssemblyVersion("1.4.5.0")] +[assembly: AssemblyFileVersion("1.4.5.0")] diff --git a/src/Lurker/ClientLurker.cs b/src/Lurker/ClientLurker.cs index 72f15548..75fa9b05 100644 --- a/src/Lurker/ClientLurker.cs +++ b/src/Lurker/ClientLurker.cs @@ -419,6 +419,7 @@ private async void WaitForExit() await Task.Run(() => { this.PathOfExileProcess.WaitForExit(WaitingTime); + this.PathOfExileProcess.Dispose(); // Sometime WaitForExit fire a false positive var process = this.GetProcess();