mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Set default ISO9660 namespace as Joliet.
This commit is contained in:
@@ -66,7 +66,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
{"normal", "Primary Volume Descriptor, ignoring ;1 suffixes"},
|
||||
{"vms", "Primary Volume Descriptor, showing version suffixes"},
|
||||
{"joliet", "Joliet Volume Descriptor"},
|
||||
{"joliet", "Joliet Volume Descriptor (default)"},
|
||||
{"rrip", "Rock Ridge"},
|
||||
{"romeo", "Primary Volume Descriptor using the specified encoding codepage"}
|
||||
};
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
if(options.TryGetValue("debug", out string debugString)) bool.TryParse(debugString, out debug);
|
||||
|
||||
// Default namespace
|
||||
if(@namespace is null) @namespace = "rrip+joliet+normal";
|
||||
if(@namespace is null) @namespace = "joliet";
|
||||
|
||||
switch(@namespace.ToLowerInvariant())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user