diff options
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/exts/utilities/bookmark.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/utilities/bookmark.py b/bot/exts/utilities/bookmark.py index 7c55be5d..9e6bb921 100644 --- a/bot/exts/utilities/bookmark.py +++ b/bot/exts/utilities/bookmark.py @@ -59,11 +59,11 @@ class SendBookmark(discord.ui.View):                  ephemeral=True,              )              return - +        self.clicked.append(interaction.user.id) +                  await self.bookmark_function(self.channel, interaction.user, self.target_message, self.title)          await interaction.response.send_message("You have received a bookmark to that message.", ephemeral=True) -        self.clicked.append(interaction.user.id)  class Bookmark(commands.Cog): | 
