mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
🐛No retry passes means do not retry errors, act so.
This commit is contained in:
@@ -897,7 +897,7 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
#region Compact Disc Error handling
|
||||
// TODO: Pass 0 should be called differently, splitting, or something like that, because we are just
|
||||
// separating skipped good sectors from really bad sectors and it's getting too chatty on log there...
|
||||
if(resume.BadBlocks.Count > 0 && !aborted)
|
||||
if(resume.BadBlocks.Count > 0 && !aborted && retryPasses > 0)
|
||||
{
|
||||
int pass = 0;
|
||||
bool forward = true;
|
||||
|
||||
Reference in New Issue
Block a user