Fix trailing newline trimming for cue import (#973)

* Fix trailing newline trimming for cue import

* Update CHANGELIST.md
This commit is contained in:
fuzzball
2026-05-03 22:27:44 +09:00
committed by GitHub
parent dce6560727
commit 8decb2a74e
2 changed files with 2 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
- Separate BEE
- Convert type of reports from success to neutral for essential steps (shfil119)
- Subtract fixed SCSI errors
- Fix trailing newline trimming for cue import (fuzz6001)
### 3.7.1 (2026-03-30)

View File

@@ -1050,7 +1050,7 @@ namespace MPF.Processors
line = sr.ReadLine();
}
return sb.ToString().TrimEnd('\n');
return sb.ToString().TrimEnd('\r', '\n');
}
catch
{