Skip to content

Commit

Permalink
Fix #460
Browse files Browse the repository at this point in the history
  • Loading branch information
lay295 committed Dec 12, 2022
1 parent 86c9503 commit fc63af9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDownloaderCore/Tools/ChatText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit fc63af9

Please sign in to comment.