Remove unnecessary conditional

This commit is contained in:
Matt Nadareski
2025-05-22 12:11:01 -04:00
parent 1c3f65e7f9
commit 0fe30d2d4f
2 changed files with 2 additions and 1 deletions

View File

@@ -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)

View File

@@ -1914,7 +1914,7 @@ namespace MPF.Processors
// SCSI: <error count>
// SCSI: <error count> samples
if (line.StartsWith("SCSI: ") && !line.EndsWith("samples"))
if (line.StartsWith("SCSI: "))
{
// Ensure there are the correct number of parts
string[] parts = line.Split(' ');