Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
howardt12345 committed Nov 24, 2023
1 parent a0802c1 commit b138d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/confessions/confession.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ async def confess(interaction: discord.Interaction, confession: str, reply_to: s
embed.add_field(name="Replying to", value=f"[{'Confession ' if reply_to_message.author.id == client.user.id else ''} {reply_to}](https://discord.com/channels/{interaction.guild_id}/{confession_channel.id}/{reply_to_id})")


confession_message = await confession_channel.send(f"<@{user_to_ping.id}>" if confession_mentioning_enabled else None, embed=embed, reference=reply_to_message)
confession_message = await confession_channel.send(f"<@{user_to_ping.id}>" if confession_mentioning_enabled and user_to_ping else None, embed=embed, reference=reply_to_message)
confession_url = confession_message.jump_url

user_id = interaction.user.id
Expand Down

0 comments on commit b138d68

Please sign in to comment.