fix(report): defer slash command interaction to prevent timeout#382
Open
Matsukami7 wants to merge 1 commit into
Open
fix(report): defer slash command interaction to prevent timeout#382Matsukami7 wants to merge 1 commit into
Matsukami7 wants to merge 1 commit into
Conversation
Discord requires slash command interactions to be acknowledged within 3 seconds or it shows "This application did not respond." The /report and /emergency commands were doing several async operations (config reads, channel history fetch, log channel message sends) before responding to the interaction, regularly exceeding that window. The fix defers the interaction immediately at the start of do_report, which acknowledges Discord instantly and allows unlimited time to complete the work before sending the followup confirmation.
tigattack
requested changes
Jun 16, 2026
tigattack
left a comment
Member
There was a problem hiding this comment.
Looks good, thanks naro. Just a little tweak then I'll merge.
|
|
||
| # Acknowledge the interaction immediately to avoid Discord's 3-second timeout | ||
| if interaction is not None and not interaction.response.is_done(): | ||
| await interaction.response.defer(ephemeral=True) |
Member
There was a problem hiding this comment.
Suggested change
| await interaction.response.defer(ephemeral=True) | |
| await interaction.response.defer(ephemeral=True, thinking=True) |
This will make it clear the bot is working on the request.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Initial Checklist
Details
Does this resolve an issue?
Resolves #
Changes
Features / Fixes
Breaking Changes
Additional
Any further notes or comments you want to make.