Lazy workaround for calls in DMs

pull/4/head
Alexey Golub 7 years ago
parent 0bfcac4749
commit d4baba46d6

@ -24,6 +24,10 @@ namespace DiscordChatExporter.Services
var editedTimeStamp = messageJson.Value<DateTime?>("edited_timestamp");
string content = messageJson.Value<string>("content");
// Lazy workaround for calls
if (messageJson["call"] != null)
content = "Started a call.";
// Get author
var authorJson = messageJson["author"];
string authorId = authorJson.Value<string>("id");

Loading…
Cancel
Save