From df291ef84e7d443a13f17b5a0dec4e3b6f75fb4b Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Thu, 17 Sep 2020 10:52:39 +0200 Subject: [PATCH] Fix Info example emoji problem The emojis that previously were used, used Unicode combinators which are not fully supported. Changing to :thumbs_up: and :thumbs_down: instead. --- examples/Info/Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/Info/Program.cs b/examples/Info/Program.cs index a478a6b..ab6cdd8 100644 --- a/examples/Info/Program.cs +++ b/examples/Info/Program.cs @@ -20,6 +20,8 @@ namespace Info .SetHeader("Information")); } - private static string GetEmoji(bool value) => value ? ":check_mark_button:" : ":cross_mark:"; + private static string GetEmoji(bool value) => value + ? ":thumbs_up:" + : ":thumbs_down:"; } }