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.
This commit is contained in:
Patrik Svensson 2020-09-17 10:52:39 +02:00 committed by Patrik Svensson
parent 7d6104ace4
commit df291ef84e

View File

@ -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:";
}
}