mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix force in CD dump when tags are not supported by image.
This commit is contained in:
@@ -380,7 +380,7 @@ namespace DiscImageChef.Core.Devices.Dumping
|
|||||||
if(_outputPlugin.SupportedMediaTags.Contains(tag))
|
if(_outputPlugin.SupportedMediaTags.Contains(tag))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if(!_force)
|
if(_force)
|
||||||
{
|
{
|
||||||
_dumpLog.WriteLine("Output format does not support {0}, continuing...", tag);
|
_dumpLog.WriteLine("Output format does not support {0}, continuing...", tag);
|
||||||
ErrorMessage?.Invoke($"Output format does not support {tag}, continuing...");
|
ErrorMessage?.Invoke($"Output format does not support {tag}, continuing...");
|
||||||
|
|||||||
Reference in New Issue
Block a user