Skip intersession when retrying subchannel.

This commit is contained in:
2020-06-17 02:03:01 +01:00
parent b3e5ada998
commit 12108dcf07

View File

@@ -1092,6 +1092,12 @@ namespace Aaru.Core.Devices.Dumping
subSize, supportedSubchannel, ref totalDuration, subLog, desiredSubchannel, tracks, isrcs,
ref mcn, subchannelExtents);
foreach(Tuple<ulong, ulong> leadoutExtent in leadOutExtents.ToArray())
{
for(ulong e = leadoutExtent.Item1; e <= leadoutExtent.Item2; e++)
subchannelExtents.Remove((int)e);
}
if(subchannelExtents.Count > 0 &&
_retryPasses > 0 &&
_retrySubchannel)