From cd88508f33c77c3018b0ed74d0813c9e2751bf4d Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Thu, 21 Dec 2023 18:08:06 +0530 Subject: pindelegate: include pinner/unpinner in audit log reason --- pindelegate/pindelegate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pindelegate/pindelegate.py b/pindelegate/pindelegate.py index 6e23304..3d3b7ea 100644 --- a/pindelegate/pindelegate.py +++ b/pindelegate/pindelegate.py @@ -61,7 +61,7 @@ class PinDelegate(commands.Cog): Pin the replied-to message. """ if await self.is_pin_capable(ctx.channel, ctx.author.id): - await ctx.message.reference.resolved.pin() + await ctx.message.reference.resolved.pin(reason=f"On behalf of {ctx.author.name}") @commands.command() async def unpin(self, ctx): @@ -71,7 +71,7 @@ class PinDelegate(commands.Cog): replied_to_message = ctx.message.reference.resolved if await self.is_pin_capable(ctx.channel, ctx.author.id): if replied_to_message.pinned: - await replied_to_message.unpin() + await replied_to_message.unpin(reason=f"On behalf of {ctx.author.name}") await ctx.reply("Unpinned message!") else: await ctx.reply("That message was already not pinned.") -- cgit v1.2.3-57-g22cb