Skip to content

Commit

Permalink
better variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
GabeMillikan committed Jun 28, 2024
1 parent 477d3da commit be08014
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cogs/moderation.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,13 +279,13 @@ async def check_multipost(self: Moderation, message: discord.Message) -> None:
):
return

previous_messages = await self.record_fingerprint(message)
previous_postings = await self.record_fingerprint(message)

if not previous_messages:
if not previous_postings:
# This is a new, unique message. Not a multipost.
return

first_post = previous_messages[0]
first_post = previous_postings[0]

embed = EmbedBuilder(
title="Multi-Post Deleted",
Expand Down

0 comments on commit be08014

Please sign in to comment.