So lately I have this issue that the interactionCreate event is fired really late sometimes, like 5-10 seconds after the interaction was sent. While this is annoying, I have code in place to deal with this so this is not the problem I am having.
My problem is the following: If I attempt to call interaction.reply, it responds with error code 10062 (Unknown Interaction).
This is completely correct and expected behavior. But if I attempt to followUp right after the reply, it will show error code InteractionNotReplied. While this is technically true, I believe Unknown Interaction is the correct error to throw here since InteractionNotReplied makes it sound like the interaction is still valid and repliable and I just didn‘t reply to it, which led to me bughunting a bug that didn‘t exist.