From 7ca0a504114d995295185cc2a6a1facf057130b6 Mon Sep 17 00:00:00 2001 From: "Michael J. Seiferling" Date: Sat, 9 Mar 2019 00:37:36 -0600 Subject: [PATCH] Tweaked fix for #161 to prevent other detection issues --- GBM/Managers/mgrProcessDetection.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GBM/Managers/mgrProcessDetection.vb b/GBM/Managers/mgrProcessDetection.vb index bd0512e..3f88344 100644 --- a/GBM/Managers/mgrProcessDetection.vb +++ b/GBM/Managers/mgrProcessDetection.vb @@ -278,7 +278,7 @@ Public Class mgrProcessDetection 'This needs to be wrapped due to issues with Mono. Try 'Some processes may return the ProcessName as a full path instead of the executable name. - sProcessCheck = Path.GetFileNameWithoutExtension(prsCurrent.ProcessName) + sProcessCheck = Path.GetFileName(prsCurrent.ProcessName) 'Unix Handler 'We need some special handling for Wine processes