mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix force in CD dump when subchannels are not supported by image.
This commit is contained in:
@@ -207,8 +207,8 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
if(!_outputPlugin.SupportedSectorTags.Contains(SectorTagType.CdSectorSubchannel) &&
|
||||
supportedSubchannel != MmcSubchannel.None)
|
||||
{
|
||||
if(!_force ||
|
||||
_subchannel != DumpSubchannel.Any)
|
||||
if(_force ||
|
||||
_subchannel == DumpSubchannel.None)
|
||||
{
|
||||
_dumpLog.WriteLine("Output format does not support subchannels, continuing...");
|
||||
UpdateStatus?.Invoke("Output format does not support subchannels, continuing...");
|
||||
|
||||
Reference in New Issue
Block a user