Skip to content

Commit

Permalink
Change ZERO_WIDTH_SPCACE to be actual zero-width character (#917)
Browse files Browse the repository at this point in the history
  • Loading branch information
matytyma authored Feb 18, 2024
1 parent 58a2ba0 commit 69e838d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rest/src/commonMain/kotlin/builder/message/EmbedBuilder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class EmbedBuilder : RequestBuilder<EmbedRequest> {
* 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<String> = Optional.Missing()
Expand Down

0 comments on commit 69e838d

Please sign in to comment.