diff --git a/DiscordChatExporter/Services/DiscordApiService.cs b/DiscordChatExporter/Services/DiscordApiService.cs index 319eac3..81426e1 100644 --- a/DiscordChatExporter/Services/DiscordApiService.cs +++ b/DiscordChatExporter/Services/DiscordApiService.cs @@ -24,6 +24,10 @@ namespace DiscordChatExporter.Services var editedTimeStamp = messageJson.Value("edited_timestamp"); string content = messageJson.Value("content"); + // Lazy workaround for calls + if (messageJson["call"] != null) + content = "Started a call."; + // Get author var authorJson = messageJson["author"]; string authorId = authorJson.Value("id");