mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Change --no-metadata to --metadata and --no-trim to --trim.
This commit is contained in:
@@ -419,7 +419,7 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
#region Trimming
|
||||
if(_resume.BadBlocks.Count > 0 &&
|
||||
!_aborted &&
|
||||
!_notrim &&
|
||||
_trim &&
|
||||
newTrim)
|
||||
{
|
||||
start = DateTime.UtcNow;
|
||||
@@ -651,7 +651,7 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
|
||||
double totalChkDuration = 0;
|
||||
|
||||
if(!_nometadata)
|
||||
if(_metadata)
|
||||
{
|
||||
WriteOpticalSidecar(BLOCK_SIZE, blocks, DSK_TYPE, null, null, 1, out totalChkDuration);
|
||||
}
|
||||
@@ -879,7 +879,7 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
#region Trimming
|
||||
if(_resume.BadBlocks.Count > 0 &&
|
||||
!_aborted &&
|
||||
!_notrim &&
|
||||
_trim &&
|
||||
newTrim)
|
||||
{
|
||||
start = DateTime.UtcNow;
|
||||
@@ -1117,7 +1117,7 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
|
||||
double totalChkDuration = 0;
|
||||
|
||||
if(!_nometadata)
|
||||
if(_metadata)
|
||||
{
|
||||
UpdateStatus?.Invoke("Creating sidecar.");
|
||||
_dumpLog.WriteLine("Creating sidecar.");
|
||||
|
||||
Reference in New Issue
Block a user