Fix value of TextDisplayBuilder.MaxContentLength (#3138)

This commit is contained in:
d4n
2025-05-28 16:36:38 -05:00
committed by GitHub
parent 2b142de56c
commit b338d307b6

View File

@@ -7,7 +7,7 @@ public class TextDisplayBuilder : IMessageComponentBuilder
/// <summary>
/// The maximum length of the content.
/// </summary>
public const int MaxContentLength = 4096;
public const int MaxContentLength = 4000;
/// <inheritdoc/>
public ComponentType Type => ComponentType.ActionRow;