From 21a041dad64303324e08c46a55fd4a29a1fd248a Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 6 Jul 2022 15:17:02 -0700 Subject: [PATCH] Update MS-CAB --- BurnOutSharp/FileType/MicrosoftCAB.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BurnOutSharp/FileType/MicrosoftCAB.cs b/BurnOutSharp/FileType/MicrosoftCAB.cs index 37b028d3..3be18181 100644 --- a/BurnOutSharp/FileType/MicrosoftCAB.cs +++ b/BurnOutSharp/FileType/MicrosoftCAB.cs @@ -56,9 +56,9 @@ namespace BurnOutSharp.FileType // If we have a previous CAB and it exists, don't try scanning string directory = Path.GetDirectoryName(file); - if (!string.IsNullOrWhiteSpace(cabFile.PreviousName)) + if (!string.IsNullOrWhiteSpace(cabFile.PreviousCabinetName)) { - if (File.Exists(Path.Combine(directory, cabFile.PreviousName))) + if (File.Exists(Path.Combine(directory, cabFile.PreviousCabinetName))) return null; }