mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Lazy workaround for calls in DMs
This commit is contained in:
parent
0bfcac4749
commit
d4baba46d6
|
|
@ -24,6 +24,10 @@ namespace DiscordChatExporter.Services
|
||||||
var editedTimeStamp = messageJson.Value<DateTime?>("edited_timestamp");
|
var editedTimeStamp = messageJson.Value<DateTime?>("edited_timestamp");
|
||||||
string content = messageJson.Value<string>("content");
|
string content = messageJson.Value<string>("content");
|
||||||
|
|
||||||
|
// Lazy workaround for calls
|
||||||
|
if (messageJson["call"] != null)
|
||||||
|
content = "Started a call.";
|
||||||
|
|
||||||
// Get author
|
// Get author
|
||||||
var authorJson = messageJson["author"];
|
var authorJson = messageJson["author"];
|
||||||
string authorId = authorJson.Value<string>("id");
|
string authorId = authorJson.Value<string>("id");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue