Skip to content

Commit

Permalink
Merge pull request #334 from VelvetToroyashi/fix/user-apps-install-enum
Browse files Browse the repository at this point in the history
fix(api): Fix InteractionContextType values
  • Loading branch information
Nihlus authored Apr 28, 2024
2 parents a1169a7 + ad361ee commit a9aa2f2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ public enum InteractionContextType
/// <summary>
/// The interaction was executed in the context of a guild.
/// </summary>
Guild = 1,
Guild = 0,

/// <summary>
/// The interaction was executed in the context of a direct message to the bot associated with the application.
/// </summary>
BotDM = 2,
BotDM = 1,

/// <summary>
/// The interaction was executed in the context of a direct message or group direct message.
/// </summary>
PrivateChannel = 3,
PrivateChannel = 2,
}

0 comments on commit a9aa2f2

Please sign in to comment.