From cd97c554651a4940131eec5e694632dc0d084928 Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Fri, 14 May 2021 02:44:07 -0400 Subject: fix potential crash when displaying audit log --- discord/auditlog.cpp | 2 +- discord/auditlog.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'discord') diff --git a/discord/auditlog.cpp b/discord/auditlog.cpp index 5f3cde5..bfada39 100644 --- a/discord/auditlog.cpp +++ b/discord/auditlog.cpp @@ -20,7 +20,7 @@ void from_json(const nlohmann::json &j, AuditLogOptions &m) { void from_json(const nlohmann::json &j, AuditLogEntry &m) { JS_N("target_id", m.TargetID); JS_O("changes", m.Changes); - JS_D("user_id", m.UserID); + JS_N("user_id", m.UserID); JS_D("id", m.ID); JS_D("action_type", m.Type); JS_O("options", m.Options); diff --git a/discord/auditlog.hpp b/discord/auditlog.hpp index c6ce0cc..8b8ae34 100644 --- a/discord/auditlog.hpp +++ b/discord/auditlog.hpp @@ -66,7 +66,7 @@ struct AuditLogOptions { struct AuditLogEntry { Snowflake ID; std::string TargetID; // null - Snowflake UserID; + std::optional UserID; AuditLogActionType Type; std::optional Reason; std::optional> Changes; -- cgit v1.2.3