mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Fix trailing newline trimming for cue import (#973)
* Fix trailing newline trimming for cue import * Update CHANGELIST.md
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -1050,7 +1050,7 @@ namespace MPF.Processors
|
||||
line = sr.ReadLine();
|
||||
}
|
||||
|
||||
return sb.ToString().TrimEnd('\n');
|
||||
return sb.ToString().TrimEnd('\r', '\n');
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user