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