From a68dbf9ade6fe6844ede35f82be5ee1da636158a Mon Sep 17 00:00:00 2001 From: Zeyla Hellyer Date: Thu, 22 Jun 2017 06:53:26 -0700 Subject: Update max embed length Embeds can now have a combined textual length of 6000, up from 4000. --- src/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/constants.rs b/src/constants.rs index 1d4ec88..b957d1d 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,7 +1,7 @@ //! A set of constants used by the library. /// The maximum length of the textual size of an embed. -pub const EMBED_MAX_LENGTH: u16 = 4000; +pub const EMBED_MAX_LENGTH: u16 = 6000; /// The gateway version used by the library. The gateway URI is retrieved via /// the REST API. pub const GATEWAY_VERSION: u8 = 6; -- cgit v1.2.3