From fc63af96b9362f738baa864aee78ba564ca6d6ec Mon Sep 17 00:00:00 2001 From: lay295 Date: Sun, 11 Dec 2022 18:52:32 -0600 Subject: [PATCH] Fix #460 --- TwitchDownloaderCore/Tools/ChatText.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TwitchDownloaderCore/Tools/ChatText.cs b/TwitchDownloaderCore/Tools/ChatText.cs index 2fa174c9..7f544067 100644 --- a/TwitchDownloaderCore/Tools/ChatText.cs +++ b/TwitchDownloaderCore/Tools/ChatText.cs @@ -39,7 +39,7 @@ public static async Task SerializeAsync(string filePath, ChatRoot chatRoot, Time { TimeSpan time = new TimeSpan(0, 0, (int)comment.content_offset_seconds); string timestamp = time.ToString(@"h\:mm\:ss"); - await sw.WriteAsync(string.Format("[{0}] {1}: {2}", timestamp, username, message)); + await sw.WriteLineAsync(string.Format("[{0}] {1}: {2}", timestamp, username, message)); } else if (timeFormat == TimestampFormat.None) {