From 69e838df3a56a6eabf849acba95b0dfa4e49a685 Mon Sep 17 00:00:00 2001 From: matytyma <100159609+matytyma@users.noreply.github.com> Date: Sun, 18 Feb 2024 14:40:13 +0100 Subject: [PATCH] Change `ZERO_WIDTH_SPCACE` to be actual zero-width character (#917) --- rest/src/commonMain/kotlin/builder/message/EmbedBuilder.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/src/commonMain/kotlin/builder/message/EmbedBuilder.kt b/rest/src/commonMain/kotlin/builder/message/EmbedBuilder.kt index b8b94900a1d..c91e49c1617 100644 --- a/rest/src/commonMain/kotlin/builder/message/EmbedBuilder.kt +++ b/rest/src/commonMain/kotlin/builder/message/EmbedBuilder.kt @@ -23,7 +23,7 @@ public class EmbedBuilder : RequestBuilder { * Utility default value for fields. * While blank values are not allowed, this value can be used to trick Discord into rendering a Field as empty. */ - public const val ZERO_WIDTH_SPACE: String = "\u200E" + public const val ZERO_WIDTH_SPACE: String = "\u200B" } private var _title: Optional = Optional.Missing()