aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/utilities/bookmark.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/utilities/bookmark.py b/bot/exts/utilities/bookmark.py
index 58f3044c..70175c80 100644
--- a/bot/exts/utilities/bookmark.py
+++ b/bot/exts/utilities/bookmark.py
@@ -74,10 +74,9 @@ class Bookmark(commands.Cog):
await member.send(embed=embed)
except discord.Forbidden:
error_embed = self.build_error_embed(f"{member.mention}, please enable your DMs to receive the bookmark.")
+ await channel.send(embed=error_embed)
else:
log.info(f"{member} bookmarked {target_message.jump_url} with title '{title}'")
- return
- await channel.send(embed=error_embed)
@commands.group(name="bookmark", aliases=("bm", "pin"), invoke_without_command=True)
@commands.guild_only()