mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Corrected typos in raw disk image.
This commit is contained in:
@@ -860,7 +860,7 @@ namespace DiscImageChef.ImagePlugins
|
||||
if(ImageInfo.xmlMediaType == XmlMediaType.OpticalDisc)
|
||||
{
|
||||
if(track != 1)
|
||||
throw new ArgumentOutOfRangeException(nameof(track), "Only a single session is supported");
|
||||
throw new ArgumentOutOfRangeException(nameof(track), "Only a single track is supported");
|
||||
|
||||
return ReadSector(sectorAddress);
|
||||
}
|
||||
@@ -873,7 +873,7 @@ namespace DiscImageChef.ImagePlugins
|
||||
if(ImageInfo.xmlMediaType == XmlMediaType.OpticalDisc)
|
||||
{
|
||||
if(track != 1)
|
||||
throw new ArgumentOutOfRangeException(nameof(track), "Only a single session is supported");
|
||||
throw new ArgumentOutOfRangeException(nameof(track), "Only a single track is supported");
|
||||
|
||||
return ReadSectors(sectorAddress, length);
|
||||
}
|
||||
@@ -886,7 +886,7 @@ namespace DiscImageChef.ImagePlugins
|
||||
if(ImageInfo.xmlMediaType == XmlMediaType.OpticalDisc)
|
||||
{
|
||||
if(track != 1)
|
||||
throw new ArgumentOutOfRangeException(nameof(track), "Only a single session is supported");
|
||||
throw new ArgumentOutOfRangeException(nameof(track), "Only a single track is supported");
|
||||
|
||||
return ReadSector(sectorAddress);
|
||||
}
|
||||
@@ -899,7 +899,7 @@ namespace DiscImageChef.ImagePlugins
|
||||
if(ImageInfo.xmlMediaType == XmlMediaType.OpticalDisc)
|
||||
{
|
||||
if(track != 1)
|
||||
throw new ArgumentOutOfRangeException(nameof(track), "Only a single session is supported");
|
||||
throw new ArgumentOutOfRangeException(nameof(track), "Only a single track is supported");
|
||||
|
||||
return ReadSectors(sectorAddress, length);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user