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.
2 parents 48eb6ac + 168b3eb commit f9ae5e1Copy full SHA for f9ae5e1
1 file changed
src/Infrastructure/Interaction/NetCordInteraction.cs
@@ -77,7 +77,7 @@ private bool CheckMessageExpiration()
77
var messageCreationTime = Context.Message.CreatedAt;
78
var interactionTime = Context.Interaction.CreatedAt;
79
var timeDifference = interactionTime - messageCreationTime;
80
- return timeDifference.TotalMinutes <= 15;
+ return timeDifference.TotalDays <= 2;
81
}
82
83
private Task<InteractionCallbackResponse> RespondAsyncCallback(string message) => RespondAsync(InteractionCallback.Message(message))!;
0 commit comments