From a8ea7bcdfce3b4ffb6b82090774859977474827d Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 11 Dec 2022 22:19:38 +0000 Subject: [PATCH] [ISO9660 filesystem] Fix returning proper filesystem type on GetInformation(). --- Aaru.Filesystems/ISO9660/Info.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Aaru.Filesystems/ISO9660/Info.cs b/Aaru.Filesystems/ISO9660/Info.cs index 550ace161..1fbc8f230 100644 --- a/Aaru.Filesystems/ISO9660/Info.cs +++ b/Aaru.Filesystems/ISO9660/Info.cs @@ -909,9 +909,9 @@ public sealed partial class ISO9660 if(refareas.Count > 0) isoMetadata.Append(suspInformation); - if(_highSierra) + if(highSierraInfo) XmlFsType.Type = FS_TYPE_HSF; - else if(_cdi) + else if(cdiInfo) XmlFsType.Type = FS_TYPE_CDI; else XmlFsType.Type = FS_TYPE_ISO;