diff --git a/Livestream.Monitor/Model/ApiClients/TwitchApiClient.cs b/Livestream.Monitor/Model/ApiClients/TwitchApiClient.cs index 57c5d52..9d5596a 100644 --- a/Livestream.Monitor/Model/ApiClients/TwitchApiClient.cs +++ b/Livestream.Monitor/Model/ApiClients/TwitchApiClient.cs @@ -277,8 +277,8 @@ public async Task> GetVods(VodQuery vodQuery) var secs = match.Groups["secs"].Value; var timespan = new TimeSpan(hours.ToInt(), mins.ToInt(), secs.ToInt()); - var singleLineTitle = video.Title.TrimEnd().Replace('\n', ' '); - var singleLineDesc = video.Description.TrimEnd().Replace('\n', ' '); + var singleLineTitle = video.Title.TrimEnd().Replace("\r\n", " ").Replace('\n', ' '); + var singleLineDesc = video.Description.TrimEnd().Replace("\r\n", " ").Replace('\n', ' '); return new VodDetails {