Skip to content

Commit

Permalink
fix: incorrect enum value (DSharpPlus#1285)
Browse files Browse the repository at this point in the history
Changed the value of `MessageActivityType.JoinRequest` from 4 to 5.
See https://discord.com/developers/docs/resources/channel#message-object-message-activity-types

Fixes DSharpPlus#1281
  • Loading branch information
Giggitybyte authored Apr 18, 2022
1 parent 85e8585 commit 71024ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DSharpPlus/Enums/Message/MessageActivityType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ public enum MessageActivityType
/// <summary>
/// Allows the user to request to join.
/// </summary>
JoinRequest = 4
JoinRequest = 5
}
}

0 comments on commit 71024ad

Please sign in to comment.