Don't replace new lines in csv

Part of #102
This commit is contained in:
Oleksii Holub
2018-11-01 18:33:29 +02:00
parent 761cb032d7
commit d28e81f8dc
2 changed files with 4 additions and 7 deletions

View File

@@ -273,9 +273,6 @@ namespace DiscordChatExporter.Core.Services
private string FormatContentCsv(string content)
{
// New lines
content = content.Replace("\n", ", ");
// Escape quotes
content = content.Replace("\"", "\"\"");