mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Re-add a few lines to the .csv exporter that were accidentally deleted
This commit is contained in:
parent
297396f03a
commit
a4d17c8c05
|
|
@ -92,6 +92,11 @@ internal partial class CsvMessageWriter(Stream stream, ExportContext context)
|
||||||
{
|
{
|
||||||
await _writer.WriteAsync(CsvEncode(message.GetFallbackContent()));
|
await _writer.WriteAsync(CsvEncode(message.GetFallbackContent()));
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
await _writer.WriteAsync(
|
||||||
|
CsvEncode(await FormatMarkdownAsync(message.Content, cancellationToken))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
await _writer.WriteAsync(',');
|
await _writer.WriteAsync(',');
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue