Skip to content

Commit

Permalink
Update dupe feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Audionut committed Aug 20, 2024
1 parent 0a90a2c commit cba8e9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cogs/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ async def dupe_embed(self, dupes, meta, emojis, channel):
else:
dupe_text = "\n\n•".join(dupes)
dupe_text = f"```•{dupe_text}```"
embed = discord.Embed(title="Are these dupes?", description=dupe_text, color=0xff0000)
embed = discord.Embed(title="Check if these are actually dupes!", description=dupe_text, color=0xff0000)
embed.set_footer(text=f"{emojis['CANCEL']} to abort upload | {emojis['UPLOAD']} to upload anyways")
message = await channel.send(embed=embed)
await message.add_reaction(emojis['CANCEL'])
Expand Down
2 changes: 1 addition & 1 deletion upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ def dupe_check(dupes, meta):
console.print()
dupe_text = "\n".join(dupes)
console.print()
cli_ui.info_section(cli_ui.bold, "Are these dupes?")
cli_ui.info_section(cli_ui.bold, "Check if these are actually dupes!")
cli_ui.info(dupe_text)
if meta['unattended']:
if meta.get('dupe', False) == False:
Expand Down

0 comments on commit cba8e9f

Please sign in to comment.