mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Remove unnecessary conditional
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -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(' ');
|
||||
|
||||
Reference in New Issue
Block a user