api: Revert "Revert 'Add FollowUpInteraction'"

This reverts commit 96b8e2b8e5.

The commit that is being reverted was created on the wrong commit.
This commit is contained in:
diamondburned 2022-08-21 00:58:57 -07:00
parent 015b1cdf6f
commit a1334c45f4
No known key found for this signature in database
GPG Key ID: D78C4471CE776659
1 changed files with 9 additions and 0 deletions

View File

@ -256,9 +256,18 @@ func (c *Client) DeleteInteractionResponse(appID discord.AppID, token string) er
}
// CreateInteractionFollowup creates a followup message for an interaction.
//
// Deprecated: use FollowUpInteraction instead.
func (c *Client) CreateInteractionFollowup(
appID discord.AppID, token string, data InteractionResponseData) (*discord.Message, error) {
return c.FollowUpInteraction(appID, token, data)
}
// FollowUpInteraction creates a followup message for an interaction.
func (c *Client) FollowUpInteraction(
appID discord.AppID, token string, data InteractionResponseData) (*discord.Message, error) {
if (data.Content == nil || data.Content.Val == "") &&
(data.Embeds == nil || len(*data.Embeds) == 0) && len(data.Files) == 0 {
return nil, ErrEmptyMessage