Skip to content

Commit 7e81098

Browse files
authored
Mention pretix refresh time in 'no ticket found' message (#236)
1 parent e3d1d9c commit 7e81098

File tree

1 file changed

+4
-1
lines changed
  • src/europython_discord/registration

1 file changed

+4
-1
lines changed

src/europython_discord/registration/cog.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ async def on_submit(self, interaction: discord.Interaction) -> None:
6060
if not tickets:
6161
await self.log_error_to_user(
6262
interaction,
63-
"We cannot find your ticket. Please double check your input and try again.",
63+
(
64+
"We cannot find your ticket. Please double check your input and try again.\n\n"
65+
"If you just bought your ticket, please try again in a few minutes."
66+
),
6467
)
6568
await self.log_error_to_channel(interaction, f"No ticket found: {order=}, {name=}")
6669
_logger.info(f"No ticket found: {order=}, {name=}")

0 commit comments

Comments
 (0)