mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix verify command when image can represent optical media, but doesn't.
This commit is contained in:
@@ -165,7 +165,7 @@ namespace DiscImageChef.Commands.Image
|
||||
List<ulong> failingLbas = new List<ulong>();
|
||||
List<ulong> unknownLbas = new List<ulong>();
|
||||
|
||||
if(verifiableSectorsImage is IOpticalMediaImage opticalMediaImage)
|
||||
if(verifiableSectorsImage is IOpticalMediaImage opticalMediaImage && opticalMediaImage.Tracks != null)
|
||||
{
|
||||
List<Track> inputTracks = opticalMediaImage.Tracks;
|
||||
ulong currentSectorAll = 0;
|
||||
|
||||
Reference in New Issue
Block a user