From de20be159fa7108bbd2968e1b2ee9a705e9cbabb Mon Sep 17 00:00:00 2001 From: Jaskowicz1 Date: Sat, 21 Oct 2023 09:58:46 +0100 Subject: [PATCH] fix: fixed a compile issue --- src/dpp/webhook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dpp/webhook.cpp b/src/dpp/webhook.cpp index c1141ccc1b..4b3c23a620 100644 --- a/src/dpp/webhook.cpp +++ b/src/dpp/webhook.cpp @@ -30,7 +30,7 @@ using json = nlohmann::json; const size_t MAX_ICON_SIZE = 256 * 1024; -webhook::webhook() : managed(), type(w_incoming), guild_id(0), channel_id(0), application_id(0), image_data(nullptr) +webhook::webhook() : managed(), type(w_incoming), guild_id(0), channel_id(0), application_id(0) { }