From 52050ab9fe995fae3adfbae76eaa8cc54203703b Mon Sep 17 00:00:00 2001 From: gsd Date: Sun, 23 Jul 2023 15:46:58 +0300 Subject: [PATCH] webhook fix --- other_ext/webhook_helper.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/other_ext/webhook_helper.py b/other_ext/webhook_helper.py index 812d5b5..dc667c0 100644 --- a/other_ext/webhook_helper.py +++ b/other_ext/webhook_helper.py @@ -97,11 +97,15 @@ class Extension: if "reason" in kwargs and user.id in self.no_reason: kwargs["reason"] = self.no_reason[user.id] del self.no_reason[user.id] - if "profile" in kwargs: - kwargs["profile"] = message.embeds[0].url + + #### if "requester_profile" in kwargs: kwargs["profile"] = message.embeds[0].author.url del kwargs["requester_profile"] + elif "profile" in kwargs: + kwargs["profile"] = message.embeds[0].url + else: + return await message.channel.send(content=f"невозможно получить профиль игрока из webhook") print(kwargs)