优化`\r`问题

This commit is contained in:
nilaoda 2022-10-27 17:00:22 +08:00
parent cb46d2d412
commit f1475ca468
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ namespace N_m3u8DL_RE.Util
{ {
var info = new Mediainfo() var info = new Mediainfo()
{ {
Text = TypeRegex().Match(stream.Value).Groups[2].Value, Text = TypeRegex().Match(stream.Value).Groups[2].Value.TrimEnd(),
Id = IdRegex().Match(stream.Value).Groups[1].Value, Id = IdRegex().Match(stream.Value).Groups[1].Value,
Type = TypeRegex().Match(stream.Value).Groups[1].Value, Type = TypeRegex().Match(stream.Value).Groups[1].Value,
}; };