We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86ab3a7 commit ddc1814Copy full SHA for ddc1814
core/thread.py
@@ -3195,6 +3195,10 @@ async def callback(self, interaction: discord.Interaction):
3195
"Failed unsnoozing thread prior to precreate menu selection; continuing.",
3196
exc_info=True,
3197
)
3198
+ # Define selection variables
3199
+ chosen_label = self.values[0]
3200
+ key = chosen_label.lower().replace(" ", "_")
3201
+ selected = options.get(key)
3202
# Remove the view
3203
try:
3204
msg = getattr(interaction, "message", None)
0 commit comments