Fix redumper EDC detection output (fixes #556)

This commit is contained in:
Matt Nadareski
2023-09-28 22:30:51 -04:00
parent d99099d587
commit 8c324e3b8b
3 changed files with 4 additions and 3 deletions

View File

@@ -11,6 +11,7 @@
- Move to config.json
- Omit track 0.2 and 00.2 from hash search
- Tweak README again
- Fix redumper EDC detection output
### 2.6.5 (2023-09-27)

View File

@@ -1586,9 +1586,9 @@ namespace MPF.Modules.Redumper
if (line == null)
return false;
if (line.StartsWith("EDC: no"))
if (line.Contains("EDC: no"))
return false;
else if (line.StartsWith("EDC: yes"))
else if (line.Contains("EDC: yes"))
return true;
line = sr.ReadLine().Trim();

View File

@@ -15,7 +15,7 @@ For those who like to test the newest features, download the latest AppVeyor WIP
## Media Preservation Frontend (MPF)
MPF is the main, UI-centric application of the MPF suite. This program allows users to use Redumper, Aaru, or DiscImageCreato in a more user-friendly way. Each backend dumping program is supported as fully as possible to ensure that all information is captured on output. There are many customization options and quality of life settings that can be access through the Options menu.
MPF is the main, UI-centric application of the MPF suite. This program allows users to use Redumper, Aaru, or DiscImageCreator in a more user-friendly way. Each backend dumping program is supported as fully as possible to ensure that all information is captured on output. There are many customization options and quality of life settings that can be access through the Options menu.
### System Requirements