mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-07-08 18:16:24 +00:00
Do not change error recovery modes on OmniDrive units, as it doesn't affect the custom command.
This commit is contained in:
@@ -108,7 +108,7 @@ partial class Dump
|
||||
byte[] md6;
|
||||
byte[] md10;
|
||||
|
||||
if(_persistent)
|
||||
if(_persistent && !_omnidrive)
|
||||
{
|
||||
Modes.ModePage_01_MMC pgMmc;
|
||||
|
||||
@@ -786,7 +786,7 @@ partial class Dump
|
||||
*/
|
||||
|
||||
// Try to ignore read errors, on some drives this allows to recover partial even if damaged data
|
||||
if(_persistent && sectorsNotEvenPartial.Count > 0)
|
||||
if(_persistent && !_omnidrive && sectorsNotEvenPartial.Count > 0)
|
||||
{
|
||||
var pgMmc = new Modes.ModePage_01_MMC
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user