diff --git a/CHANGELIST.md b/CHANGELIST.md index d428b529..bebe0dab 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -64,6 +64,7 @@ - Minor Check UI improvements - Reset Redump errors when an INFO block is found - Handle error count resets in Redumper +- Remove unnecessary conditional ### 3.3.0 (2025-01-03) diff --git a/MPF.Processors/Redumper.cs b/MPF.Processors/Redumper.cs index 20637cab..046bd54e 100644 --- a/MPF.Processors/Redumper.cs +++ b/MPF.Processors/Redumper.cs @@ -1914,7 +1914,7 @@ namespace MPF.Processors // SCSI: // SCSI: samples - if (line.StartsWith("SCSI: ") && !line.EndsWith("samples")) + if (line.StartsWith("SCSI: ")) { // Ensure there are the correct number of parts string[] parts = line.Split(' ');