Hey!
I'm porting one of my bots to C#, and for some reason whenever I call DeferAsync from a Modal Interaction, it doesn't show the "bot is thinking..." message, it just closes the modal and displays nothing until I Followup
Basic idea of what i'm doing
[ModalInteraction("edit_image:*")]
public async Task EditModalResponse(string uuid,EditModal m)
{
await DeferAsync(ephemeral:false);
// do stuff
await FollowupWithFileAsync(stuff)
}
In the previous library I was using this worked fine, is this something Discord changed recently or am I doing something wrong?