Browse Source

Update embed description max length

See Discord API docs for reference: https://discord.com/developers/docs/resources/channel#embed-limits
pull/1923/head
MrCakeSlayer GitHub 4 years ago
parent
commit
8c6bf305a1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Core/Entities/Messages/EmbedBuilder.cs

+ 1
- 1
src/Discord.Net.Core/Entities/Messages/EmbedBuilder.cs View File

@@ -27,7 +27,7 @@ namespace Discord
/// <summary>
/// Returns the maximum length of description allowed by Discord.
/// </summary>
public const int MaxDescriptionLength = 2048;
public const int MaxDescriptionLength = 4096;
/// <summary>
/// Returns the maximum length of total characters allowed by Discord.
/// </summary>


Loading…
Cancel
Save