From 31eff196e634de5df172dd4bfe5dab8296d296c8 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 2 Nov 2020 15:18:03 -0800 Subject: [PATCH] Forgot to fix path in Wise --- BurnOutSharp/ProtectionType/WiseInstaller.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BurnOutSharp/ProtectionType/WiseInstaller.cs b/BurnOutSharp/ProtectionType/WiseInstaller.cs index e25ef44a..94c77f09 100644 --- a/BurnOutSharp/ProtectionType/WiseInstaller.cs +++ b/BurnOutSharp/ProtectionType/WiseInstaller.cs @@ -22,6 +22,7 @@ namespace BurnOutSharp.ProtectionType return protections; var subProtections = Scan(scanner, file); + Utilities.PrependToKeys(subProtections, file); Utilities.AppendToDictionary(protections, subProtections); return protections; @@ -51,6 +52,9 @@ namespace BurnOutSharp.ProtectionType } catch { } + // Remove temporary path references + Utilities.StripFromKeys(protections, tempPath); + return protections; } catch { }